@extends('layouts.template') @section('content') Fare Managment @csrf Vehicle Type Select type @foreach(App\Models\VehicleCategory::where('status','ACTIVE')->get() as $item) {{$item->name}} @endforeach Zone Select Zone @foreach(App\Models\Zone::where('status','ACTIVE')->get() as $item) {{$item->name}} @endforeach Base Fare Base KM Included Base Hours Included Additional Rate per KM Additional Rate per Hour Driver Allowance Overnight charges Surge charge SAVE @endsection