diff --git a/resources/views/tracker.blade.php b/resources/views/tracker.blade.php index ed9757d..3c5dbf4 100644 --- a/resources/views/tracker.blade.php +++ b/resources/views/tracker.blade.php @@ -20,10 +20,10 @@

Where in the World is Ben?

- Tracking started: {{ $trip->date_start }} | + Tracking started: {{ date('j M Y (G:H)', strtotime($trip->date_start)) }} | {{ ($trip->is_active) ? "Active" : "Ended" }} | {{ ($trip->is_tracking) ? "Currently tracking" : "Not currently tracking" }} - (Last update: {{ $trip->updated_at }}) + (Last update: {{ date('j M Y (G:H)', strtotime($trip->updated_at)) }})

@@ -34,7 +34,7 @@ @foreach($trip->checkins as $checkin)
  • -

    {{ $checkin->title ?? "[No title]" }}

    {{ $checkin->date }}
    +

    {{ $checkin->title ?? "[No title]" }}

    {{ date('j M Y (G:H)', strtotime($checkin->date)) }}
    {{ $checkin->note ?? "[No note]" }}
  • @@ -45,7 +45,7 @@