@extends('layouts.adminmaster') @section('styles') @endsection @section('admincontent') @if ($message = Session::get('success'))
{{ $message }}
@elseif($message = Session::get('failure'))
{{ $message }}
@endif

All Route Price

@can('ratereports-list')
@foreach($routes as $routekey=>$items) @foreach($pralis as $pralikey=>$prali) @foreach($vehicletype as $vehkey=>$veh) @php $routeamount = App\Models\Routeprice::where('status',0)->where('route_id',$items->id)->where('prali_id',$prali->id)->where('vehicletype_id',$veh->id)->first(); @endphp @if(isset($routeamount)) @endif @endforeach @endforeach @endforeach
Route Pralis Vehicle Type Prices
{{$items->name}} {{$prali->name}} {{$veh->name}}

Flat Rate: Rs. {{$routeamount->flat_rate}}

Rate By Km: Rs. {{$routeamount->ratekm}}

Reserve: Rs. {{$routeamount->reserve}}

@endcan
@endsection