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

Все публикации

@foreach($posts as $post)
{{ $post->title }}
Статус: {{ $post->is_published ? 'Опубликован' : 'Черновик' }} @if($post->published_at) | План: {{ $post->published_at }} @endif
@csrf
Ред.
@csrf @method('DELETE')
@endforeach
@endsection