@extends('layouts.app') @section('content')
{{ $trips->count() }}
{{ number_format($totalDistance, 0, ',', '.') }} km
{{ number_format($totalLoad, 0, ',', '.') }} ton
| Tanggal | Truk | Driver | Dari | Tujuan | Jarak (km) | Muatan (ton) | Proyek |
|---|---|---|---|---|---|---|---|
| {{ $trip->start_date->format('d/m/Y') }} | {{ $trip->truck->license_plate }} | {{ $trip->driver->name }} | {{ $trip->origin }} | {{ $trip->destination }} | {{ $trip->distance }} | {{ $trip->load_weight }} | {{ $trip->project ? $trip->project->name : 'Tidak Ada' }} |