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