Vehicle Categories & Tariff Settings

Configure hourly/fixed/daily rates, grace periods, and vehicle capacity.

@if(session('success'))
{{ session('success') }}
@endif
@foreach($categories as $cat)
@if(str_contains($cat->icon, 'icon !!} @elseif($cat->icon) {{ $cat->name }} @else @endif

{{ $cat->name }}

{{ $cat->code }} @if($cat->parkingSize) Size {{ $cat->parkingSize->code }} @endif
{{ $cat->is_active ? 'Active' : 'Disabled' }}
Parking Slot Size Class: {{ $cat->parkingSize ? $cat->parkingSize->name : 'Unassigned' }}
Default Billing Model: {{ $cat->billing_type }}
1st Hour Charge: ৳{{ number_format($cat->first_hour_rate, 2) }}
2nd Hour Onwards (Hourly): ৳{{ number_format($cat->hourly_rate, 2) }}/hr
Fixed Flat Rate: ৳{{ number_format($cat->fixed_rate, 2) }}
Daily Full Rate: ৳{{ number_format($cat->daily_rate, 2) }}/day
Grace Free Period: {{ $cat->grace_period_minutes }} mins
Monthly Subscription: ৳{{ number_format($cat->monthly_rate, 2) }}/mo
Parked Count / Category Capacity: {{ $cat->active_parked_count }} / {{ $cat->capacity }} slots
@endforeach