@extends('freight.layouts.app') @section('title', 'Dashboard') @section('content')
| Type | Make / Model | Year | Plate | Capacity | Status |
|---|---|---|---|---|---|
| {{ $v->truck_type }} | {{ trim($v->make . ' ' . $v->model) ?: '—' }} | {{ $v->year ?: '—' }} | {{ $v->plate_number ?: '—' }} | {{ $v->capacity_weight ? $v->capacity_weight . ' lbs' : '—' }} | @if($v->is_active)Active@elseInactive@endif |
No trucks added yet. Add your truck information →
@endif