Where in the World is Ben?

Tracking started: {{ $trip->date_start }} | {{ ($trip->is_active) ? "Active" : "Ended" }} | {{ ($trip->is_tracking) ? "Currently tracking" : "Not currently tracking" }} (Last update: {{ $trip->updated_at }})

    @foreach($trip->checkins as $checkin)
  1. {{ $checkin->title ?? "[No title]" }}

    {{ $checkin->date }}
    {{ $checkin->note ?? "[No note]" }}
  2. @endforeach