@if(!request()->ajax()) @include('Admin.Includes.header')
@endif
@if(!request()->ajax()) @endif
Basic Information
Truck Name: {{ $truck->truck_name }}
Truck Type: {{ ucfirst(str_replace('_', ' ', $truck->truck_type)) }}
Cubic Capacity: {{ number_format($truck->cubic_capacity, 2) }} m³
Status: @if($truck->is_active) Active @else Inactive @endif
Pricing Type: @if($truck->pricing_type === 'custom') Custom Pricing @else Global Pricing @endif
Sort Order: {{ $truck->sort_order ?? 0 }}
@if($truck->truck_image)
Truck image
@endif
Quick Actions
Edit Truck @if(!request()->ajax()) @endif
@if(!request()->ajax())
@include('Admin.Includes.footer') @endif