{{ Form::label('ref', 'Référence') }}
{{ $article['ref'] ?? null }}
{{ Form::label('name', 'Nom') }}
{{ $article['name'] ?? null }}
{!! $article['image'] !!}
{{ Form::label('categories', __('shop.shelves.title')) }}
@foreach (($article['categories'] ?? null) as $category) {{ $category }} @endforeach
{{ Form::label('tags', 'Tags') }}
@foreach (($article['tags'] ?? null) as $tag) {{ $tag }} @endforeach
@include('Admin.Shop.Articles.partials.product.description')
{{ Form::label('description', 'Description') }} {{ $article['description'] ?? null }}
@include('Admin.Core.Comments.partials.comments', ['model' => 'Shop.Article', 'model_id' => $article['id'] ?? false, 'comments' => $article['comments'], 'with_add' => false])