@if (auth('branch')->check())
image
@elseif (auth('volunteer')->check())
image
@endif
@if (auth('branch')->check())

{{ auth('branch')->user()->username }}

@elseif (auth('volunteer')->check())

{{ auth('volunteer')->user()->branch->username }}

@endif

{{ $event->reason }}

@if (count($event->comments) > 0) @foreach ($comments as $comment)
image

{{ $comment->authorable->username ?? 'Unknown Author'}}

{{ $comment->body }}

{{ $comment->created_at->diffForHumans() }}
@endforeach @endif