@extends('admin.partial.template-full') @section('section')
Back

@{{$profile->username}}

{{$profile->statuses()->count()}} Posts | {{$profile->followers()->count()}} Followers | {{$profile->following()->count()}} Following


{{$profile->name}}

@if($user->is_admin == true)

ADMIN

@endif

{{$profile->created_at->diffForHumans()}}

Joined

@if($user->last_active_at)

{{$user->last_active_at->diffForHumans()}}

Last Active

@endif

email

{{$user->email}}

@if($profile->website)

website

{{$profile->website}}

@endif

bookmarks

{{$profile->bookmarks()->count()}}

collections

{{$profile->collections()->count()}}

likes

{{$profile->likes()->count()}}

reports

{{$profile->reports()->count()}}

reported

{{$profile->reported()->count()}}

active stories

{{$profile->stories()->count()}}

storage used

{{PrettyNumber::size($profile->media()->sum('size'))}} / {{PrettyNumber::size(config_cache('pixelfed.max_account_size') * 1000)}}

bio

{{ $profile->bio }}

Recent Posts


@foreach($profile->statuses()->whereHas('media')->latest()->take(16)->get() as $item) @php($post = \App\Services\StatusService::get($item->id, false)) @endforeach @if($profile->statuses()->whereHas('media')->count() == 0)

No statuses found

@endif
@endsection @push('styles') @endpush