I don't know what to say in the if statement.
@foreach($posts as $post)
@if($post->created_at->isYesterday())
Yesterday {{-- $post->created_at->isWeekday() --}}
@elseif($post->created_at->isToday())
Today {{-- $post->created_at->isWeekday() --}}
@elseif(strtotime($post->created_at) > strtotime('-365 days'))
{{ $post->created_at->format('l') }} {{ $post->created_at->format('F d') }}th
@endif
@endforeach
I want to make a Headline between my posts like:
Today
Yesterday
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community