Account Bookings

{{ Form::open( ['method'=>'POST', 'id'=>'booking_list_form']) }}
{{Form::text( 'booking_date', $today, [ "class" => "form-control date_input", "id" => 'booking_date' ]) }}
{{Form::text( 'booking_start_date', $startDate, [ "class" => "form-control date_input", "id" => 'booking_start_date' ]) }}
{{Form::text( 'booking_end_date', $endDate, [ "class" => "form-control date_input", "id" => 'booking_end_date' ]) }}
{{ Form::select( 'booking_delivery_person', @$deliverypersons, null, [ "class" => "form-control select2 selected_delivery_person" ] ) }}
Note: Only those records will be imported whose barcode/consignment number is mentioned.
* Please select at least one entry from below list.
{{-- --}}
Id {{ Form::checkbox('check-all-client','',false,['class'=>'minimal']) }}{{ Form::checkbox('select_all','',false,["class"=>"minimal", "id"=>"bulk_delete", "data-scope"=>"#booking-grid"]) }}Date Barcode Client Center Receiver Amount
{{ Form::close() }}