{{ __("My Profile") }}

{{-- --}}
{{--
{{(Auth::user()->name)}}
--}} {{-- @if(Cache::has('is_online' . Auth::user()->id))

{{ __("Active") }}

@else

{{ __("Deactivate") }}

@endif --}}

{{ __("If several languages coalesce, the grammar of the resulting language is more simple and regular than that of the individual.") }}

{{ __("About") }}

{{ __("Name") }}

{{--
{{(Auth::user()->name)}}
--}}

{{ __("Email") }}

{{--
{{(Auth::user()->email)}}
--}}

{{ __("Time") }}

{{--
{{(Auth::user()->created_at)}}
--}}

{{ __("Location") }}

{{--
{{(Auth::user()->location)}}
--}}
@foreach($AttachedFiles as $message)
@if(strtolower(pathinfo($message->file, PATHINFO_EXTENSION))=='jpg' || strtolower(pathinfo($message->file, PATHINFO_EXTENSION))=='png' || strtolower(pathinfo($message->file, PATHINFO_EXTENSION))=='gif')
{{ $message->message }}

@php echo App\Http\Controllers\Chats\HomeController::bytesToHuman(File::size(public_path($message->file))); @endphp

@else
{{ $message->message }}

@php echo App\Http\Controllers\Chats\HomeController::bytesToHuman(File::size(public_path($message->file))); @endphp

@endif
@endforeach