{{ $product->name }}
@if ($product->tier)
- {{ __('Group %s', $product->tier) }}
@endif
@if ($product->price)
{{ __('Price: %s', amount($product->price, ['Currency' => oa($currency)])) }}
@endif
{!! Form::select(
'data[option]['.$product->id.']',
$options,
(isset($linked_items->{$product->id}) ? $linked_items->{$product->id}->item_id : null),
[
'empty' => true,
'class' => 'form-control ajax-select option-select',
'data-type' => 'post',
'data-url' => action('Tevalis/ItemsController@secure_update_product.json', [$venue_id])
]
) !!}