@extends('schoolar.master') @section('title', $post->titulo) @section('content')

{{ $post->titulo }}

@if($post->categoria) {{ $post->categoria->nome }} @endif {{ \Carbon\Carbon::parse($post->created_at)->format('d/m/Y') }}
@if($post->capa)
{{ $post->titulo }}
@endif @if($post->resumo)
Resumo

{{ $post->resumo }}

@endif
{!! $post->texto !!}
@endsection