31 lines
558 B
PHP
31 lines
558 B
PHP
@extends('layout.index', [
|
|
'title' => __('products.title'),
|
|
'subtitle' => __('products.title'),
|
|
'breadcrumb' => [__('products.title')]
|
|
])
|
|
|
|
@section('content')
|
|
|
|
<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-12">
|
|
@include('components.carousel')
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|