@if(!request()->ajax())
@endif
@if($truck->truck_image)
@endif
@if(!request()->ajax())
Truck Details
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 }} |
Quick Actions
Edit Truck
@if(!request()->ajax())
@endif