@extends('layouts.main') @section('content')
{{ $post->title }}

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

{{ $post->title }}
{!! $post->description !!}

LEIA MAIS

@foreach ($latestPosts->take(2) as $post) @endforeach {{-- Última notícia, visível apenas em telas maiores --}} @if($latestPosts->count() > 2) @endif
@endsection