@if ($notes->isEmpty())
No Notes Found
@if (!$disabled)
Add new notes to keep track of your project
@endif
@else
@foreach ($notes as $note)
{{ $note->user->display_name }} / {{ ucfirst($note->activity_type) }}
{{ date_format(date_create($note->created_at), config('env.formats.date')) }}
@if (!$disabled)
@else
@endif
{!! $note->comment !!}
Write a new comment, send your team notification by typing @ followed by their name
@endforeach
@endif