@extends('layout') @section('content')

Управление статьями

+ Создать статью
@forelse($posts as $post) @empty @endforelse
Заголовок Статус Дата публикации Действия
{{ $post->title }}
{{ Str::limit($post->slug, 30) }}
@if($post->is_published) Опубликовано @else Черновик @endif {{ $post->published_at ? $post->published_at->format('d.m.Y H:i') : ($post->scheduled_at ? 'Запл.: ' . $post->scheduled_at->format('d.m H:i') : '-') }} Ред.
@csrf @method('DELETE')
Статей пока нет. Создайте первую!
{{ $posts->links() }}
@endsection