Vehicles
Manage Vehicles available in current Branch.
@php
$stats = [
['label' => 'Total', 'value' => $total, 'color' => 'primary', 'icon' => 'ph-flag-banner'],
['label' => 'Available', 'value' => $available, 'color' => 'success', 'icon' => 'ph-check-circle'],
['label' => 'On-Duty', 'value' => $onDuty, 'color' => 'danger', 'icon' => 'ph-road-horizon'],
['label' => 'In-Service', 'value' => $inService, 'color' => 'secondary', 'icon' => 'ph-wrench'],
];
@endphp
@foreach($stats as $stat)
@endforeach
{{-- Vehicles Management Table --}}
| Vehicle # |
Vehicle Type |
Vehicle Capacity |
Status |
Actions |
|
|
|
|
|
|
Loading...
please wait...
|
Showing
to
of entries
No entries found
|
{{-- Vehicle Management Modal --}}
@endsection
@push('inline-scripts')
@endpush