@extends('layouts.admin')
@section('title', 'Blog')
@section('page_title', 'Blog')
@section('content')
@forelse($posts as $post)
@if($post->cover_image)
 }})
@endif
{{ $post->title }}
{{ $post->author->name ?? '—' }}
@if($post->published_at)
Publié
@else
Brouillon
@endif
@empty
Aucun article pour l'instant.
@endforelse
@endsection