unreverse specific/all posts

This commit is contained in:
Ben Goldsworthy 2023-06-11 20:37:29 -06:00
parent f3e053782e
commit 2c60ad645a
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@
<h2 class="section__title">@if ($showAllCheckins) Posts @else Recent Posts @endif</h2>
<p style="font-weight: bold; text-align: center;">Want to receive a regular email digest of updates?</p>
<p style="text-align: center;">Ask me and I'll add you to the list: weekly, fortnightly and monthly options available (or daily if you're really keen).</p>
<ol start="{{ count($trip->checkins) }}" reversed>
<ol start="{{ count($trip->checkins) }}" @if(!($showAllCheckins || $toCheckin || $fromCheckin)) reversed @endif>
@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