{{ Form::label('model', 'Familles de produit') }}
@include('components.form.select', [
'name' => 'product_type',
'id_name' => 'product_type',
'list' => $models_options,
'value' => $article['product_type'] ?? null,
'class' => 'select2',
'with_empty' => '',
'required' => true
])
{{ Form::label('model_id', 'Produit') }}
@include('components.form.select', [
'name' => 'product_id',
'id_name' => 'product_id',
'list' => $products ?? [],
'value' => $article['product_id'] ?? null,
'class' => 'select2',
'with_empty' => ''
])
{{ Form::label('article_nature_id', __('shop.article_natures.name')) }}
@include('components.form.select', [
'name' => 'article_nature_id',
'id_name' => 'article_nature_id',
'list' => $natures_options,
'value' => $article['article_nature_id'] ?? null,
'class' => 'select2',
'with_empty' => '',
'required' => true
])
{{ Form::label('name', 'Nom') }}
@include('components.form.input', ['name' => 'name', 'value' => $article['name'] ?? null, 'required' => true])
{{ Form::label('ref', 'Référence') }}
@include('components.form.input', ['name' => 'ref', 'value' => $article['ref'] ?? null])
{{ Form::label('categories', __('shop.shelves.title')) }}
@include('components.form.select', [
'name' => 'categories[]',
'list' => $categories_options,
'values' => $article['categories'] ?? null,
'class' => 'select2',
'multiple' => true
])
{{ Form::label('visible', 'Visible') }}
@include('components.form.toggle', [
'name' => 'visible',
'value' => ($article['visible'] ?? null),
'on' => __('oui'),
'off' => __('non'),
'meta' => 'data-id=' . ($article['id'] ?? null),
'size' => 'sm',
])
{{ Form::label('homepage', __('Accueil')) }}
@include('components.form.toggle', [
'name' => 'homepage',
'value' => ($article['homepage'] ?? null),
'on' => __('oui'),
'off' => __('non'),
'meta' => 'data-id=' . ($article['id'] ?? null),
'size' => 'sm',
])
{{ Form::label('tags', 'Tags') }}
@include('components.form.selects.select-tree', [
'name' => 'tags[]',
'list' => $tags_list,
'values' => $article['tags'] ?? null,
'class' => 'select2',
'multiple' => true
])
@include('Admin.Shop.Articles.partials.product.description')
{{ Form::label('description', 'Description') }}
@include('components.form.textarea', [
'name' => 'description',
'value' => $article['description'] ?? null,
'class' => 'editor',
'required' => true
])
@include('Admin.Shop.Articles.partials.product.images')
@include('components.uploader.widget', [
'load_url' => route('Admin.Shop.Articles.getImages', ['id' => $article['id'] ?? false]),
'delete_url' => route('Admin.Shop.Articles.deleteImage'),
'title' => 'Photos',
'name' => 'images'
])
@include('Admin.Core.Comments.partials.comments', [
'model' => 'Shop.Article',
'model_id' => $article['id'] ?? false,
'comments' => $article['comments'] ?? false
])