|
{{ $note->created_at->diffForHumans() }}
|
{{ $note->content }}
@include('laravel-crm::notes.partials.note-model', ['note' => $note])
|
@if($note->noted_at)
{{ $note->noted_at->format('h:i A') }} on {{ $note->noted_at->toFormattedDateString() }}
@endif
|
{{ $note->createdByUser->name ?? null }} |
@can('edit crm notes')
{{--@if(! $note->completed_at)
{{ ucfirst(__('laravel-crm::lang.complete')) }}
@endif--}}
{{----}}
@endcan
@can('delete crm notes')
@endcan
|