From 462c6883e2ec6e0c0c293fa34fd04f7a3263349e Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Mon, 12 Jun 2023 02:54:33 +0000 Subject: [PATCH] fix list ordering --- resources/views/tracker.blade.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/resources/views/tracker.blade.php b/resources/views/tracker.blade.php index c95b86f..54086a9 100644 --- a/resources/views/tracker.blade.php +++ b/resources/views/tracker.blade.php @@ -33,14 +33,13 @@

@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 = $trip->checkins @endphp - @else - @php $checkinsList = array_slice(array_reverse($trip->checkins), 0, 10) @endphp - @endif - - @include('partials.checkins-list') +
      + @if($showAllCheckins || $toCheckin || $fromCheckin) + @php $checkinsList = $trip->checkins @endphp + @else + @php $checkinsList = array_slice(array_reverse($trip->checkins), 0, 10) @endphp + @endif + @include('partials.checkins-list')
    @if (!$showAllCheckins)

    Show all posts