Where in the World is Ben?

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: {{ date('j M Y (G:H)', strtotime($trip->updated_at)) }})

    @foreach(array_reverse($trip->checkins) as $checkin) @if($checkin->id != 2607)
  1. {{ $checkin->title ?? "[No title]" }}

    {{ date('j M Y (G:H)', strtotime($checkin->date)) }}
    {{ $checkin->note ?? "[No note]" }} @if($checkin->image_url) @endif
  2. @endif @endforeach