@extends('Common::admin.layout.page') @section('page')

{{ __("Chat List") }} : {{ $user->name }}

@if(count($chats) > 0) @foreach($chats as $chat) @endforeach @else @endif
{{ __("Name") }} {{ __("show chat") }}
@if($user->id == $chat->from_id && $chat->from_type == get_class($user)) {{ $chat->to?->name }} @else {{ $chat->from?->name }} @endif
{{__('there is no data yet')}}
@stop