@extends('front/layouts.app') @section('seo') @endsection @section('og') @endsection @section('title', $article->titre) @section('content')
{{ $article->titre }}
@foreach ($article->tags as $tag) {{ $tag->nom }} @endforeach {{ __('messages.post.date_publication', ['date' => $article->created_at->format('d/m/Y')]) }}
{!! $article->contenu !!}

@if ($articles->count() > 0)

{{ __('messages.post.plus_darticles') }}

@foreach ($articles as $article) @if ($article->slug) @include('front/blog/_blog-card') @endif @endforeach
@endif @endsection