| {{ $product->name }} ({{ $product->sku }}) |
{!! Form::select('products[' . $product->id . '][category_id]', $categories, $product->category_id, [
'placeholder' => __('messages.please_select'),
'class' => 'form-control select2 input-sm category_id',
'style' => 'width: 100%;',
]) !!}
|
{!! Form::select(
'products[' . $product->id . '][sub_category_id]',
!empty($sub_categories[$product->category_id]) ? $sub_categories[$product->category_id] : [],
$product->sub_category_id,
[
'placeholder' => __('messages.please_select'),
'class' => 'form-control select2 input-sm sub_category_id',
'style' => 'width: 100%;',
],
) !!}
|
{!! Form::select('products[' . $product->id . '][brand_id]', $brands, $product->brand_id, [
'placeholder' => __('messages.please_select'),
'class' => 'form-control select2 input-sm',
'style' => 'width: 100%;',
]) !!}
|
{!! Form::select(
'products[' . $product->id . '][tax]',
$taxes,
$product->tax,
[
'placeholder' => __('messages.please_select'),
'class' => 'form-control select2 input-sm row_tax',
'style' => 'width: 100%;',
],
$tax_attributes,
) !!}
|
{!! Form::select(
'products[' . $product->id . '][product_locations][]',
$business_locations,
$product->product_locations->pluck('id'),
['class' => 'form-control select2', 'multiple'],
) !!}
|