@extends('layouts.admin') @section('title', 'Blog') @section('page_title', 'Blog') @section('content')
Nouvel article
@forelse($posts as $post)
@if($post->cover_image)@endif

{{ $post->title }}

{{ $post->author->name ?? '—' }}

@if($post->published_at) Publié @else Brouillon @endif
@csrf @method('DELETE')
@empty

Aucun article pour l'instant.

@endforelse
@endsection