@extends('front/layouts.app') @section('seo') @endsection @section('og') @endsection @section('title', $article->titre) @section('content') {{ $article->titre }} {{ __('messages.header.home') }} {{ __('messages.footer.actualites') }} @foreach ($article->tags as $tag) {{ $tag->nom }} @endforeach {{ __('messages.post.date_publication', ['date' => $article->created_at->format('d/m/Y')]) }} {!! $article->contenu !!} {{ __('messages.post.partager') }} @if ($articles->count() > 0) {{ __('messages.post.plus_darticles') }} @foreach ($articles as $article) @if ($article->slug) @include('front/blog/_blog-card') @endif @endforeach @endif @endsection