@extends('admin.users.user') @section('content')

Profile Details

{{ucfirst($user->profile->fullname)}}
{{$user->profile->phone ?? 'Not Provided'}}
{{$user->profile->gender ?? 'Not Specified'}}
{{$user->profile->age ?? 'Not Specified'}}
{{$user->profile->phone ?? 'Not Provided'}}
{{--

Attention!

Payment method not setup yet. Add Payment Method.
--}}

User Gallery

@foreach ($user->gallery as $value)
{{$value->description}} {{$value->created_at->diffForHumans()}}
@endforeach

Followers

@foreach ($user->followers as $follower) @endforeach
Profile Sigup with View
{{ucfirst($follower->users->username)}}
{{$follower->users->email}}
{{ isset($follower->platform) ? ucfirst(preg_replace('/(?platform)) : 'Bloodlines App' }}

Following

@foreach ($user->following as $following) @endforeach
Profile Sigup with View
{{ucfirst($following->users->username)}}
{{$following->users->email}}
{{ isset($following->platform) ? ucfirst(preg_replace('/(?platform)) : 'Bloodlines App' }}
@endsection