{{ __('Notes') }}

{{ __('Internal thread — visible to operators only') }}

{{ $this->notes->count() }}
@forelse ($this->notes as $note)
{{ $note->author?->name ?: __('Someone') }} {{ $note->created_at->format('M j, Y, H:i') }}

{{ $note->body }}

@empty
{{ __('No notes yet.') }}
@endforelse