From 2c60ad645ac82efc0a0ffa4351d9af1efd8bd2cd Mon Sep 17 00:00:00 2001 From: Ben Goldsworthy Date: Sun, 11 Jun 2023 20:37:29 -0600 Subject: [PATCH] unreverse specific/all posts --- resources/views/tracker.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/tracker.blade.php b/resources/views/tracker.blade.php index 1db3b1e..c95b86f 100644 --- a/resources/views/tracker.blade.php +++ b/resources/views/tracker.blade.php @@ -33,9 +33,9 @@

@if ($showAllCheckins) Posts @else Recent Posts @endif

Want to receive a regular email digest of updates?

Ask me and I'll add you to the list: weekly, fortnightly and monthly options available (or daily if you're really keen).

-
    +
      @if($showAllCheckins || $toCheckin || $fromCheckin) - @php $checkinsList = array_reverse($trip->checkins) @endphp + @php $checkinsList = $trip->checkins @endphp @else @php $checkinsList = array_slice(array_reverse($trip->checkins), 0, 10) @endphp @endif