37 lines
793 B
PHP
37 lines
793 B
PHP
@extends('layout.index', [
|
|
'title' => __('products.title'),
|
|
'subtitle' => __('products.title'),
|
|
'breadcrumb' => [__('products.title')]
|
|
])
|
|
|
|
@section('content')
|
|
<form action="{{ route('Shop.Products') }}" method="GET">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-offset-2 col-md-8">
|
|
|
|
<div class="box box-info">
|
|
<div class="box-body">
|
|
<div class="col-md-6">
|
|
<h3>{{ name }}</h3>
|
|
<h4>
|
|
{{ $product.section.name }}<br>
|
|
</h4>
|
|
</div>
|
|
<div class="col-md-6 text-right">
|
|
<h2>{{ $prix_total }} €</h2>
|
|
<h4>{{ $residence['type_produit']['name'] }}</h4>
|
|
</div>
|
|
|
|
<div class="col-md-12">
|
|
@include('Hestimmo.modules.Lot.partials.carousel')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
@endsection
|