{{ $user->full_name }} @if($user->verified)
@endif

{{ $user->full_name }}

@include('design_1.web.components.rate', ['rate' => $userRates['rate'], 'rateCount' => $userRates['count'], 'rateClassName' => 'mt-8'])
{{ trans('panel.followers') }}
{{ shortNumbers($userFollowing->count()) }} {{ trans('panel.following') }}
@if($user->public_message) @endif
@php $socials = getSocials(); if (!empty($socials) and count($socials)) { $socials = collect($socials)->sortBy('order')->toArray(); } $userSocials = !empty($user->socials) ? json_decode($user->socials, true) : []; @endphp {{-- Socials --}} @if(count($socials) and !empty($userSocials))
@foreach($socials as $socialKey => $socialValue) @if(!empty($socialValue['title']) and !empty($userSocials[$socialKey])) @if(!empty($socialValue['image'])) {{ $socialValue['title'] }} @else @endif @endif @endforeach
@endif
{{ trans('update.member_since') }} {{ dateTimeFormat($user->created_at, 'M Y') }}
@if($user->offline)
{{ trans('update.the_user_is_temporarily_unavailable') }}
@if(!empty($user->offline_message))

{{ $user->offline_message }}

@endif
@endif