@extends ("partials.layout") @section('title', "$actor->preferredUsername's Profile") @section('content')

{{ $actor->preferredUsername }}

@if ($user == null) {{ $actor->preferredUsername }}'s pfp @else {{ $actor->preferredUsername }}'s pfp @endif
@if ($user != null)

{{ $user->status }}

{{ $user->about_you }}

online ONLINE!

@endif
@if ($user != null)

Mood: {{ $user->mood }}

View my: Blog | Bulletins

@endif

Contacting {{ $actor->preferredUsername }}

@auth
@if (!auth ()->user ()->is ($user))
@if (auth ()->user ()->actor->friends_with ($actor))
@csrf Remove Friend
@else
@csrf Add to Friends
@endif
@else @endif
@endauth

Federation handle:

@if ($user != null)

@php echo "@" . $user->name . "@" . explode ("/", env ("APP_URL"))[2] @endphp

@else

{{ $actor->local_actor_id }}

@endif
@if ($user != null)

{{ $user->name }}'s Interests

General

{{ $user->interests_general }}

Music

{{ $user->interests_music }}

Movies

{{ $user->interests_movies }}

Television

{{ $user->interests_television }}

Books

{{ $user->interests_books }}

Heroes

{{ $user->interests_heroes }}

@endif
@auth @if ($user != null && auth()->user()->is($user)) @endif @endauth @if ($user != null)

{{ $user->name }}'s Latest Blog Entries [View Blog]

There are no Blog Entries yet.

@endif

{{ $actor->preferredUsername }}'s Bio

{!! $actor->summary !!}

@if ($user != null)

{{ $actor->preferredUsername }}'s Friend Space

[view all]

{{ $actor->preferredUsername }} has {{ count ($user->mutual_friends ()) }} friends.

@endif

{{ $actor->preferredUsername }}'s Posts

{{ $actor->preferredUsername }} has {{ count ($actor->posts) }} posts.

@foreach ($actor->posts as $post) @endforeach
@endsection