Fique por dentro das novidades no nosso Blog

@foreach ($latestPosts->take(2) as $post)
{{ $post->title }}
{{ $post->title }}

{!! \Illuminate\Support\Str::limit(strip_tags($post->description), 150, '...') !!}

{{ $post->created_at->format('d/m/Y') }}
@endforeach {{-- Última notícia, visível apenas em telas maiores --}} @if($latestPosts->count() > 2)
@php $post = $latestPosts->last(); @endphp
{{ $post->title }}
{{ $post->title }}

{!! \Illuminate\Support\Str::limit(strip_tags($post->description), 150, '...') !!}

{{ $post->created_at->format('d/m/Y') }}
@endif