@php use App\Models\Admin\Archive\ArchivedGame; /** @var \App\Models\Admin\BadChatMessage $message */ $match = ArchivedGame::find($message->match_id); @endphp
@csrf {{ $message->created_at }}
Profile Picture of {{ $message->hostUser->last_known_username }} {{ $message->hostUser->last_known_username ?? $message->hostUser->id }}
Profile Picture of {{ $message->user->last_known_username }} {{ $message->user->last_known_username ?? $message->user->id }}
{{ $message->message }}
@if($message->handled)
@else
@endif @if($message->handled)
{{ $message->consequences ?? '---' }}
@if($match !== null) @if($match === null) not found :( @else match chat @endif @endif
@if($message->handledBy === null) Handler Unknown @else
Profile Picture of {{ $message->handledBy?->last_known_username }} {{ $message->handledBy?->last_known_username ?? $message->handledBy?->id }}
@endif @endif @if(!$message->handled)
Handle @if($match !== null) @if($match === null) not found :( @else match chat @endif @endif
@endif