Files
opensem/resources/views/Shop/Articles/show.blade.php
Ludovic CANDELLIER 8afb3467f8 enhance add to basket
2022-04-01 00:11:15 +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-5">
{!! $article['image_big'] !!}
</div>
<div class="col-4">
{!! $article['description'] !!}
</div>
<div class="col-3">
@include('Shop.Articles.partials.ArticleAddBasket')
</div>
</div>
@endsection
@include('load.layout.modal')