@extends('layouts.app') @section('title', 'Speaking Notes') @section('page-title', 'Speaking Notes') @section('content')
{{-- Filters + actions bar --}}
Clear + New Note
{{-- Table --}}
@forelse($notes as $note) @empty @endforelse
Title Urgency Status Scheduled Author
{{ $note->title }}
{{ Str::limit($note->headline_message, 80) }}
{{ $note->urgency_label }} {{ $note->status_label }} {{ $note->scheduled_for ? $note->scheduled_for->format('d M Y') : '—' }} {{ $note->author?->name ?? '—' }} View
No speaking notes found. Create one →
@if($notes->hasPages())
{{ $notes->links() }}
@endif
@endsection