Files
opensem/resources/views/Shop/Articles/show.blade.php
2022-04-16 19:33:17 +02:00

24 lines
534 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-9 text-justify">
<div style="max-width: 360px;">
@include('components.multi-images', ['images' => $article['images']])
</div>
{!! $article['description'] !!}
</div>
<div class="col-3">
@include('Shop.Articles.partials.ArticleAddBasket')
</div>
</div>
@endsection
@include('load.layout.modal')