@if (auth('branch')->check()) 
         
        @elseif (auth('volunteer')->check()) 
        
        @endif
        
        
            @if (auth('branch')->check()) 
            
{{ auth('branch')->user()->username }}
           @elseif (auth('volunteer')->check()) 
           
{{ auth('volunteer')->user()->branch->username }}
           @endif
            
{{ $event->reason }}
            
         
     
    
{{ $comment->authorable->username ?? 'Unknown Author'}}
{{ $comment->body }}