{{ __('dashboard.Blog') }}

{{ __('dashboard.Write and publish posts for the public blog.') }}

@allows('blog.compose') @endallows
@if ($posts->isEmpty())

{{ __('dashboard.No posts yet.') }}

@else {{ __('dashboard.Title') }} {{ __('dashboard.Slug') }} {{ __('dashboard.Status') }} {{ __('dashboard.Last updated') }} @foreach ($posts as $post)

{{ $post->title }}

{{ $post->slug }} @if ($post->isReleased()) {{ __('dashboard.Published') }} @else {{ __('dashboard.Draft') }} @endif {{ $post->updated_at?->toFormattedDateString() }}
@allows('blog.revise') @endallows @allows('blog.retire') @endallows
@endforeach
@endif {{ __('dashboard.Retire') }}