@extends('admin.template.master') @section('title')

SteadFast Courier Sent List

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif
{!! Form::label('from_date', 'From Date') !!} {!! Form::date('from_date', \Carbon\Carbon::now(), ['class' => 'form-control', 'id' => 'from_date']) !!}
{!! Form::label('to_date', 'To Date') !!} {!! Form::date('to_date', \Carbon\Carbon::now(), ['class' => 'form-control', 'id' => 'to_date']) !!}
{!! Form::label('status', 'Status') !!} {!! Form::select('status', ['All'=>'All', 'pending' => 'pending','sent'=>'sent' ,'failed' => 'failed'], null , ['class' => 'form-control desktop_b_type_select2', 'style' => 'width: 120px;', 'id' => 'status']) !!}
{!! Form::button('Search',['class' => 'btn btn-primary btn-order-search', 'id'=> 'search_btn']) !!} {!! Form::button('Reset',['class' => 'btn btn-danger btn-order-search', 'id'=> 'reset_btn']) !!}

ID Order ID INV-Bill-No Name Phone Address Amount Status Date
@endsection @section('javascripts') @endsection