@extends('backend.layouts.admin.app') @section('content')

Vehicles

@foreach($vehicles as $vehicle) @endforeach
Vehicle No. Type Make Model Driver Assigned Action
{{ $vehicle->registration_number ?? null }} {{ $vehicle->vehicleType->type ?? null }} {{ $vehicle->make ?? null }} {{ $vehicle->model ?? null }} {{ $vehicle->driver->name ?? null }}
@endsection