@extends('layouts.app') @section('title', 'Trucks') @section('content')

Trucks

Add Truck @foreach ($trucks as $truck) @endforeach
ID License Plate Height Width Weight Capacity Status Actions
{{ $truck->truck_id }} {{ $truck->license_plate }} {{ $truck->height }} {{ $truck->width }} {{ $truck->weight }} {{ $truck->capacity }} {{ $truck->truck_status }} Edit View
@csrf @method('DELETE')
@endsection