@if(config('visibility.notes_col_checkboxes'))
|
|
@endif
{{ $note->first_name ?? runtimeUnkownUser() }}
|
{{ str_limit($note->note_title, 65) }}
|
@if(count($note->tags ?? []) > 0)
@foreach($note->tags->take(2) as $tag)
{{ str_limit($tag->tag_title, 15) }}
@endforeach
@else
---
@endif
@if(count($note->tags ?? []) > 1)
@php $tags = $note->tags; @endphp
@include('misc.more-tags')
@endif
|
{{ runtimeDate($note->note_created) }}
|
@if($note->permission_edit_delete_note)
@else
@endif
|
@endforeach