{{ __('Profile of :user ', ['user' => $user->displayName]) }}

{{ __('Profile Overview') }}

@if ($user->meta_data['image'] ?? null)
@endif
{{ $user->displayName }}
{{--

--}}

{{ $user->displayName }}

{{ '@' . $user->username }}

@if ($user->meta_data['bio'] ?? null)

{{ str(nl2br($user->meta_data['bio']))->toHtmlString() }}

@endif
@forelse ($user->badges as $badge) @if ($badge->image) {{ $badge->name }} @elseif ($badge->css_class)
@endif @empty @endforelse
{{ __('Member since') }} {{ $user->created_at->diffForHumans() }}
{{ __('Created') }} {{ shortNumber($user->threads()->count()) }} {{ __('Threads') }}
{{ __('Posted') }} {{ shortNumber($user->replies()->count()) }} {{ __('Replies') }}
@if ( ($user->meta_data['facebook_link'] ?? null) || ($user->meta_data['instagram_link'] ?? null) || ($user->meta_data['twitter_link'] ?? null) || ($user->meta_data['linkedin_link'] ?? null) || ($user->meta_data['github_link'] ?? null) || ($user->meta_data['dribbble_link'] ?? null))
@if ($user->meta_data['facebook_link'] ?? null) Facebook @endif @if ($user->meta_data['instagram_link'] ?? null) Instagram @endif @if ($user->meta_data['twitter_link'] ?? null) Twitter @endif @if ($user->meta_data['linkedin_link'] ?? null) LinkedIn @endif @if ($user->meta_data['github_link'] ?? null) GitHub @endif @if ($user->meta_data['dribbble_link'] ?? null) Dribbble @endif
@endif
{{ __('Threads') }} {{ __('Favorites') }} @if ($logged_in_user && !($user->meta_data['disable_messages'] ?? null) && $logged_in_user->id != $user->id) {{ __('Message') }} @endif
@if ($logged_in_user && $logged_in_user?->id != $user->id) @livewire('forum.follow', ['user' => $user], key($user->id)) @endif {{ $user->followers_count ?? 0 }} {{ __('Followers') }} {{ $user->followings_count ?? 0 }} {{ __('Followings') }}

{{ __('Timeline') }}

    @forelse ($activities as $activity)
  • $activity->event == 'replied' || $activity->event == 'updated-reply', 'bg-orange-500' => $activity->event == 'flagged', 'bg-primary-500' => $activity->event == 'liked', 'bg-orange-500' => $activity->event == 'disliked', 'bg-negative-500' => $activity->event == 'deleted', 'bg-green-500' => $activity->event == 'created' || $activity->event == 'favorited' || $activity->event == 'accepted-answer', ])> @if ($activity->event == 'created') @elseif ($activity->event == 'replied' || $activity->event == 'updated-reply') @elseif ($activity->event == 'accepted-answer') @elseif ($activity->event == 'favorited') @elseif ($activity->event == 'liked') @elseif ($activity->event == 'disliked') @elseif ($activity->event == 'deleted') @endif

    @if ($activity->event == 'deleted') {{ __($activity->description) }} @elseif ($activity->event == 'replied' || $activity->event == 'updated-reply') {{ __($activity->description) }} @if ($activity->subject?->thread?->slug) {{ $activity->subject->thread->title }} @endif @else {{ __($activity->description) }} @if ($activity->subject?->slug) {{ $activity->subject->title }} @endif @endif

    @if ($activity->event == 'deleted') @elseif ($activity->event == 'replied' || $activity->event == 'updated-reply') @if ($activity->subject?->thread?->slug)

    {{ $activity->subject->thread->title }}

    {{ $activity->subject->thread->description }}

    @endif @elseif($activity->subject?->slug)

    {{ $activity->subject->title }}

    {{ $activity->subject->description }}

    @endif
  • @empty @endforelse
@if ($activities->hasPages())
{{ $activities->links() }}
@endif