@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

FSP Delivery Report

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif
FSP Delivery Filter
{!! Form::label('from_date', 'From Order Date') !!} {!! Form::date('from_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'from_date']) !!}
{!! Form::label('to_date', 'To Order Date') !!} {!! Form::date('to_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'to_date']) !!}
{!! Form::label(' ') !!}
{!! Form::label('from_order', 'From Order') !!} {!! Form::number('from_order', null, ['class' => 'form-control text', 'id' => 'from_order']) !!}
{!! Form::label('to_order', 'To Order') !!} {!! Form::number('to_order', null, ['class' => 'form-control text', 'id' => 'to_order']) !!}
{!! Form::label(' ') !!}
{!! Form::label('FSP') !!} {!! Form::select('fsp_id', $fsps, null, ['class' => 'form-control select-data', 'placeholder' => 'Select FSP (All FSP if Not Selected)', 'id' => 'fsp_id']) !!}
{!! Form::label('Hidden Fields : ') !!}
 All
 Available(Sourcing)
 Available(Unavailable)
 Customer-Confirmation(No Response)
 Customer-Confirmation(Terminate)
 Payment-Confirmation(Cancel)
 Canceled by customer
 Interchange Received(No)
 QC(Not Passed)
 Locked Order
{!! Form::button('Search',['class' => 'btn btn-primary btn-order-delivery-search', 'id' => 'btn-order-delivery-search']) !!} {!! Form::button('Clear',['class' => 'btn btn-danger btn-order-delivery-reset', 'id' => 'btn-order-delivery-reset']) !!}
FSP Delivery Summary
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection