@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('Restaurant\BookingController@update', [$booking->id]), 'method' => 'PUT', 'id' => 'edit_booking_form' ]) !!}
{{-- @dd($booking->booking_end) --}}
{!! Form::label('booking_note', __( 'restaurant.customer_note' ) . ':') !!}
{!! Form::textarea('booking_note', $booking->booking_note, ['class' => 'form-control','placeholder' => __( 'restaurant.customer_note' ), 'rows' => 3 ]); !!}
{!! Form::label('booking_status', __('restaurant.change_booking_status') . ':') !!}
{!! Form::select('booking_status', $booking_statuses, $booking->booking_status, ['class' => 'form-control', 'placeholder' => __('restaurant.change_booking_status'), 'required']); !!}
{!! Form::close() !!}