@section('css') @endsection

Chat / Detail

{{$chat->company_one->name ?? ""}} vs {{$chat->company_two->name ?? ""}}
@forelse($chat->messages as $msg)
{{$msg->sender->name ?? ""}} @if($msg->type == 'TEXT')

{{$msg->message}}

@else @php $ext = Illuminate\Support\Str::afterLast($msg->file_path, '.') @endphp @if(in_array(Str::lower($ext), ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp', 'svg'])) @else

{{Illuminate\Support\Str::afterLast($msg->file_path, '/')}}

@endif @endif {{$msg->created_at->format('Y-m-d H:i')}}
@empty

No record found

@endforelse
@section('script') @endsection