@extends ('layouts.shared') @section ('body')

{{ $device->name }}

@foreach ($trips as $trip) @php ($link = route('shared.trip', $trip->code)) @endforeach
{{ __('shared-device.trip-name') }} {{ __('shared-device.trip-start_at') }} {{ __('shared-device.trip-end_at') }} {{ __('shared-device.trip-distance') }} {{ __('shared-device.trip-time') }}
{{ $trip->name }} {{ $trip->start_at }} {{ $trip->end_at }} @unitHuman('distance', $trip->distance) @timeHuman($trip->time)
@stop