{{-- Note Item - Professional Card Design --}} @php $color = 'warning'; $iconName = 'note-add'; $isPersonal = $note->is_personal; @endphp
{{-- Header --}}
{{ __('Note') }} @if($isPersonal) {{ __('Personal') }} @endif @if($note->channel) {{ \App\Enums\NoteChannels::toArray()[$note->channel->value] ?? $note->channel->name }} @endif
{{ Str::limit(strip_tags($note->content), 80) }}
@if($note->user) {{ __('By') }}: {{ $note->user->fullname }} @endif
{{ $note->created_at->format('d/m/y') }} {{ $note->created_at->format('H:i') }}
@if(strlen($note->content) > 80)
{{ __('Show more') }}
{!! nl2br(e($note->content)) !!}
@endif