@extends('layouts.master')
@php
$PayType = config('custom.PayType');
$states = config('custom.states');
$driverType = config('custom.driverType');
$bad_zone = config('custom.bad_zone');
asort($bad_zone);
@endphp
@section('content')
Total Expenses:
@if(count($expenses) > 0)
{{ count($expenses) }},
@else
{{ count($expenses) }},
@endif
Amount: ${{ number_format($exptotalAmount,2)}}
Total Repair: {{count($repairs)}},
Amount: ${{ number_format($repairtotalAmount,2)}}
@endsection()
@section('script')
@endsection