{{ __('ID: %s', $product->id) }}

{{ $product->name }}

@if ($product->actual_price)
{{ __('Price: %s', amount($product->price, ['Currency' => oa($currency)])) }}
{{ __('Actual Price: %s', amount($product->actual_price, ['Currency' => oa($currency)])) }}
@else
{{ __('Price: %s', amount($product->price, ['Currency' => oa($currency)])) }}
@endif

{!! Form::select( 'data['.$type.']['.$product->id.']', $items, (isset($linked_items->{$product->id}) ? $linked_items->{$product->id}->item_id : null), [ 'empty' => true, 'class' => 'form-control ajax-select product-select', 'data-type' => 'post', 'data-url' => action('Tevalis/ItemsController@secure_update_product.json', [$venue_id]) ] ) !!}
@if (isset($product->Products) && $product->Products)

{{ __('Options') }}

@foreach ($product->Products as $p) @include( 'Plugins/Tevalis/Views/Elements/Product/option', [ 'product' => $p, 'options' => (isset($product_options->{(isset($linked_items->{$product->id}) ? $linked_items->{$product->id}->item_id : null)}) ? $product_options->{(isset($linked_items->{$product->id}) ? $linked_items->{$product->id}->item_id : null)} : null) ] ) @endforeach
@endif