@extends('frontend.layouts.app') @section('metatags') @endsection @section('title', $post->meta_title !== null ? $post->meta_title : $post->title) @section('content')

{{ $post->title }}

PubliƩ le {{ $post->created_at->toFormattedDateString() }}
@foreach ($post->categories as $category) {{ $category->name }} @endforeach

{{ $post->title }}

{!! $post->description !!}
{{-- @if (count($post->tags) !== 0)
Tags
@foreach ($post->tags as $tag) {{ $tag->name }} @endforeach
@endif --}}
@if (isset($post->previous)) @endif @if (isset($post->next)) @endif
@include('frontend/pages/blog/list-categories')
@endsection @section('scripts') @endsection