@extends('layouts.admin') @section('content')

Gérer les publications

@forelse($posts as $post) @empty @endforelse

Titre

État

Date de création

@if($post->status === "published")

Publié

@elseif($post->status === "draft") Brouillon @endif

{{ $post->created_at->format('d/m/Y H:i') }}

Aucune publication à afficher.

@endsection