profile cover photo of {{ $user->name }}
profile photo of {{ $user->name }}

{{ $user->name }}

{{__("Member Since")}} {{ $user->created_at->format("M d, h:m a") }}

@if(auth()->check() && auth()->id() != $user->id) @if(auth()->user()->isFollowing($user)) {{-- Following button --}}
@else {{-- Follow button --}}
@endif {{-- Message button --}}
@endif
{{-- Mobile Dropdown --}}
{{-- Desktop Tabs --}}
@switch($section) @case('wall')

This is the wall. I don't think this can be implemented yet? requires comments or something

@break @case('mods')
{{ $mods->links() }}
@foreach($mods as $mod) @endforeach
@break @case('recentActivity')

This is the recent activity. Probably need to implement some kind of activity tracking for this?

@break @case('aboutMe')

{{$user->about}}

@break @endswitch