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

Customer Order Report

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif
Customer Order 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('Customer Phone Number') !!} {!! Form::text('customer_contact', null, ['class' => 'form-control text', 'placeholder' => 'Enter Customer Phone Number', 'id' => 'customer_contact']) !!}
{!! Form::label('Customer type') !!} {!! Form::select('customer_type', ['new'=>'New','old'=>'Old'], null, ['class' => 'form-control select-data', 'placeholder' => 'Customer type', 'id' => 'customer_type']) !!}
{{--
{!! Form::label('Multiple') !!}
--}}
{!! Form::label('from_reg_date', 'From Registration Date') !!} {!! Form::date('from_reg_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'from_reg_date']) !!}
{!! Form::label('to_reg_date', 'To Registration Date') !!} {!! Form::date('to_reg_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'to_reg_date']) !!}
{!! Form::label(' ') !!}
{!! 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']) !!} {!! Form::button('Excel',['class' => 'btn btn-info btn-order-delivery-excel', 'id' => 'btn-order-delivery-excel']) !!}
Customer Order List
Step Data Summary (0)
{{--
Step Data Summary (0)
--}}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection