{{ $title }}

{{ $subtitle }}
{{ $userName }} — Exported {{ $exportDate }}
@if($notesByMonth->isEmpty())
No notes found for the selected period.
@else @foreach($notesByMonth as $monthName => $notes)
{{ $monthName }}
@foreach($notes as $note)
{{ $note->video ? $note->video->title : 'Unknown Video' }}
Written {{ $note->updated_at->format('F j, Y') }} • {{ str_word_count($note->content) }} words
{{ $note->content }}
@endforeach
@endforeach @endif