@extends('admin.layout.app') @section('title','Estimation Report') @push('headerscript') @endpush @section('content')

Estimation Report

{!! Form::select("status", ['All'=>'All ', 'waiting'=>'Waiting', 'yes'=>'Yes', 'no'=>'No','pending'=>'Pending','cancelled'=>'Cancelled'], old("status"), ['class'=>'form-control', 'id'=>'status'] ) !!}
{!! Form::select("branch_id", \App\Http\Helpers\Helper::getBranchData(), old("branch_id"), ['class'=>'form-control' ,'id' => 'branch_id'] ) !!}
{!! Form::select("customer_id", [''=>'Select Customer']+$customers, old("customer_id"), ['class'=>'form-control', 'id'=>'customer_id'] ) !!}
{!! Form::select("technician_id", [''=>'Select Customer']+$users, old("technician_id"), ['class'=>'form-control', 'id'=>'technician_id'] ) !!}
S.No. Estimation No. Date Customer Name Contact No. Plate No. Emirates Amount Technician Name Status
{!! Form::close() !!}
@endsection @push('footerscript') {{-- --}} @endpush