@lang( 'restaurant.booking_details' )

@lang('contact.customer'): {{ $booking->customer->name }}
@lang('restaurant.service_staff'): {{ $booking->waiter->user_full_name ?? '--' }}
@lang('restaurant.correspondent'): {{ $booking->correspondent->user_full_name ?? '--' }}
@if(!empty($booking->booking_note)) @lang('restaurant.customer_note'): {{ $booking->booking_note }} @endif
@lang('messages.location'): {{ $booking->location->name }}
@lang('restaurant.table'): {{ $booking->table->name ?? '--' }}
@lang('restaurant.booking_starts'): {{ $booking_start }}
@lang('restaurant.booking_ends'): {{ $booking_end }}



{!! Form::open(['url' => action([\App\Http\Controllers\Restaurant\BookingController::class, 'update'], [$booking->id]), 'method' => 'PUT', 'id' => 'edit_booking_form' ]) !!}
{!! Form::select('booking_status', $booking_statuses, $booking->booking_status, ['class' => 'form-control', 'placeholder' => __('restaurant.change_booking_status'), 'required']); !!}
{!! Form::close() !!}