@extends('layouts.app')
@section('content')
Все публикации
@foreach($posts as $post)
{{ $post->title }}
Статус:
{{ $post->is_published ? 'Опубликован' : 'Черновик' }}
@if($post->published_at) | План: {{ $post->published_at }} @endif
@endforeach
@endsection