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

Job Card Appointment Report

{!! Form::select("customer_id", [''=>'Select Customer']+$customers, old("customer_id"), ['class'=>'form-control', 'required', 'id'=>'customer_id'] ) !!}
{!! Form::select("brand_id", [''=>'Select Brands']+$brands, old("brand_id"), ['class'=>'form-control', 'required', 'id'=>'brand_id'] ) !!}
{!! Form::select("status", [''=>'select ', 'pending'=>'Pending', 'completed'=>'Completed'], 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'] ) !!}
S.No. Appointment No. Appointment Date Appointment Time Customer Name Contact No. Plate No. VIN No. Vehicle Brand Emirates Remarks Status
{!! Form::close() !!}
@endsection @push('footerscript') {{-- --}} @endpush