@extends('layouts.admin', ['title' => $truck->name]) @section('content')

{{ $truck->name }}

{{ $truck->plate_number ?: 'No plate number' }}

History Edit
@csrf @method('DELETE')

Tracking link

{{ route('track.show', $truck->token) }}
@csrf

Latest location

@if ($truck->latestLocation)
Latitude
{{ $truck->latestLocation->latitude }}
Longitude
{{ $truck->latestLocation->longitude }}
Speed
{{ $truck->latestLocation->speed_kmh ?? '-' }} km/h
Updated
{{ $truck->latestLocation->tracked_at->diffForHumans() }}
@else

No locations recorded.

@endif
@endsection