@lang('restaurant.service_staff_replacement')

{{ $transaction->invoice_no }}

{!! Form::open([ 'route' => ['change_service_staff', $transaction->id], 'method' => 'put', 'id' => 'change_service_staff', ]) !!} {{ method_field('PUT') }}
@php $is_service_staff_required = !empty($pos_settings['is_service_staff_required']) && $pos_settings['is_service_staff_required'] == 1 ? true : false; @endphp @if (in_array('tables', $enabled_modules) || in_array('service_staff', $enabled_modules))
{!! Form::select('res_waiter_id', $waiters, $transaction->res_waiter_id, [ 'class' => 'form-control', 'required' => $is_service_staff_required, 'placeholder' => __('restaurant.select_service_staff'), ]) !!}
@endif @if (!empty($pos_settings['inline_service_staff']))
@foreach ($sell_details as $key => $sell_detail) @php $product_name = $sell_detail->product_name . '
' . $sell_detail->sub_sku; if (!empty($sell_detail->brand)) { $product_name .= ' ' . $sell_detail->brand; } @endphp @endforeach
{{ __('sale.product') }} {{ __('restaurant.service_staff') }}
{!! $product_name !!}
{!! Form::select( 'sell_details[' . $key . '][res_service_staff_id]', $waiters, $sell_detail->res_service_staff_id, [ 'class' => 'form-control select', 'placeholder' => __('restaurant.select_service_staff'), 'required' => $is_service_staff_required ], ) !!}
@endif
{!! Form::close() !!}