unreverse specific/all posts
This commit is contained in:
parent
f3e053782e
commit
2c60ad645a
1 changed files with 2 additions and 2 deletions
|
@ -33,9 +33,9 @@
|
||||||
<h2 class="section__title">@if ($showAllCheckins) Posts @else Recent Posts @endif</h2>
|
<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="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>
|
<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)
|
@if($showAllCheckins || $toCheckin || $fromCheckin)
|
||||||
@php $checkinsList = array_reverse($trip->checkins) @endphp
|
@php $checkinsList = $trip->checkins @endphp
|
||||||
@else
|
@else
|
||||||
@php $checkinsList = array_slice(array_reverse($trip->checkins), 0, 10) @endphp
|
@php $checkinsList = array_slice(array_reverse($trip->checkins), 0, 10) @endphp
|
||||||
@endif
|
@endif
|
||||||
|
|
Loading…
Reference in a new issue