@foreach ($posts as $post)
@if($loop->first)
{{ $post->created_at->locale(LaravelLocalization::getCurrentLocale())->isoFormat('LL') }}
@if($post->categories->first() AND $post->categories->first()->name)
@endif
{{ \Str::limit(strip_tags($post->post_content), 100) }}
@else
@if($post->categories->first() AND $post->categories->first()->name)
@endif
{{ $post->created_at->locale(LaravelLocalization::getCurrentLocale())->isoFormat('LL') }}
@endif
@endforeach