@extends('admin::layouts.app') @section('title', 'Posts') @section('content')

Posts — {{ $channel->name }}

New post
@include('admin::components.prefix-tabs', ['prefixes' => $channel->prefixes, 'activePrefix' => $activePrefix])
@forelse($publications as $publication) @empty @endforelse
Title Prefix Status Published Author Updated
{{ $publication->title }} {{ $publication->prefix ? '/'.$publication->prefix->slug : '—' }} {{ $publication->published_at?->toDateString() ?? '—' }} {{ $publication->post->author->name ?? '—' }} {{ $publication->updated_at->diffForHumans() }} Edit
@csrf @method('DELETE')
No posts yet{{ $activePrefix ? ' in /'.$activePrefix->slug : '' }}.
@if($publications->hasPages())
{{ $publications->links() }}
@endif
@endsection