@extends('panel.layouts.app') @section('page-title') {{ LaraCore::setting('html_prefix') }} {{ (LaraCore::setting('html_prefix') != '') ? '|' : '' }} Daily Collection @stop @section('content')

Daily Collection

{{Form::text( 'start_date', $start_date, [ "class" => "form-control", "id" => 'start_date' ]) }}
{{Form::text( 'end_date', $start_date, [ "class" => "form-control", "id" => 'end_date' ]) }}
{{ Form::select('carriers', $carriers,'',["class"=>'form-control filter select2', 'id' => 'carriers']) }}
{{ Form::select('booking_type', $booking_type,'',["class"=>'form-control filter select2', 'id' => 'booking_type']) }}
{{-- {{ Form::select('clients', $clients,'',["class"=>'form-control filter select2', 'id' => 'clients']) }} --}}
{{ Form::open(["url"=>route('print.daily.collection.report'),"method"=>"POST","target"=>"_blank"]) }} {{ Form::hidden('start_date','',['id'=>'reportStartDate']) }} {{ Form::hidden('end_date','',['id'=>'reportEndDate']) }} {{ Form::hidden('carrier','',['id'=>'reportCarrier']) }} {{ Form::hidden('booking_type','',['id'=>'reportBookingType']) }} {{ Form::hidden('clients','',['id'=>'reportClient']) }} {{ Form::hidden('nocharges','',['id'=>'nocharges']) }} {{ Form::close() }} {{ Form::open(["url"=>route('excel.daily.collection.report'),"method"=>"POST"]) }} {{ Form::hidden('start_date','',['id'=>'excelReportStartDate']) }} {{ Form::hidden('end_date','',['id'=>'excelReportEndDate']) }} {{ Form::hidden('carrier','',['id'=>'excelReportCarrier']) }} {{ Form::hidden('booking_type','',['id'=>'excelReportBookingType']) }} {{ Form::hidden('clients','',['id'=>'excelReportClient']) }} {{ Form::close() }}
A Id Date Client Center Receiver Carrier Package Type Consignment No Weight Amount
Total Amount:
@include('common.modal.send_report_mail_confirm_model',['entity' => 'parcel_report'])
@stop @section('custom-scripts') @stop