Files
opensem/resources/views/Shop/Articles/show.blade.php
Ludovic CANDELLIER 2f77b5fc23 wip 3d
2022-04-13 23:49:48 +02:00

24 lines
466 B
PHP

@extends('Shop.layout.layout', [
'title' => __('home.title'),
])
@section('content')
<div class="row">
<div class="col-12">
<h1>{{ $article['name'] }}</h1>
</div>
</div>
<div class="row">
<div class="col-4">
{!! $article['image_big'] !!}
</div>
<div class="col-5">
{!! $article['description'] !!}
</div>
<div class="col-3">
@include('Shop.Articles.partials.ArticleAddBasket')
</div>
</div>
@endsection
@include('load.layout.modal')