@extends('layout.app') @section('title', 'Fleet List Report') @push('header_script') @endpush @section('content')
{!! Form::select('owner_name', ['' => 'All'] + $owners, null, [ 'class' => 'form-control select2', 'id' => 'owner_name', ]) !!}
{!! Form::select('manufacturer', ['' => 'All'] + $manufacturers, null, [ 'class' => 'form-control select2', 'id' => 'manufacturer', ]) !!}
{!! Form::select('financer_id', ['' => 'All'] + $financeCompanies, null, [ 'class' => 'form-control select2', 'id' => 'financer_id', ]) !!}
{!! Form::select('vehicle_model', ['' => 'All'] + $models, null, [ 'class' => 'form-control select2', 'id' => 'vehicle_model', ]) !!}
Sr. No. Owner Name Vehicle Owner Type Vehicle Type Registration Date Vehicle Registration No. Vehicle Model Manufacture By Year of Manufacture Free / Finance Finance Company EMIs Paid Loan Tenure (Months) Loan Amount EMI Amount
@endsection @push('footer_script') @endpush