@extends('layouts.main') @section('title', $post->title . ' - Febratex Summit') @section('description', \Illuminate\Support\Str::limit(strip_tags($post->description), 160, '...')) @section('og_type', 'article') @section('og_title', $post->title) @section('og_description', \Illuminate\Support\Str::limit(strip_tags($post->description), 300, '...')) @section('og_url', route('novidades.show', $post->slug)) @section('og_image', asset('img/uploads/' . $post->capa)) @section('og_image_alt', 'Imagem do artigo: ' . $post->title) @section('twitter_title', $post->title) @section('twitter_description', \Illuminate\Support\Str::limit(strip_tags($post->description), 200, '...')) @section('twitter_image', asset('img/uploads/' . $post->capa)) @section('twitter_image_alt', 'Imagem do artigo: ' . $post->title) @section('canonical', route('novidades.show', $post->slug)) @push('head') @endpush @section('content')
{{ $post->title }}

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

{{ $post->title }}

{!! $post->description !!}

LEIA MAIS

@foreach ($latestPosts->take(2) as $relatedPost) @endforeach @if($latestPosts->count() > 2) @php $lastPost = $latestPosts->last(); @endphp @endif
@endsection