@extends('layouts.admin') @section('title', 'Gestion du Blog') @section('content')
Titre | Catégories | Statut | Date | Actions |
---|---|---|---|---|
{{ $post->title }}
{{ Str::limit($post->excerpt, 60) }}
|
@foreach($post->categories as $category) {{ $category->name }} @endforeach | @if($post->is_published) Publié @else Brouillon @endif | {{ $post->created_at->format('d/m/Y') }} | @if($post->is_published) Voir @endif Modifier |