@extends('layouts.default') @section('content')
image
{{ $user->name }}
{{ $user->email }}
{{ $user->posts_count }}
Posts
{{ $user->friends_count }}
Friends
{{ $meetingCount }}
Meetings
Details
Social Media
First Name
Last Name
User Name
Email
Date Of Birth
{{ $user->profile->date_of_birth }}
Hometown
{{ $user->profile->hometown }}
Neighborhood
{{ $user->profile->neighborhood }}
Works At
{{ $user->profile->works_at }}
Education
{{ $user->profile->education }}
Journey
{{ $user->profile->journey }}
Location
{{ $user->profile->location }}

Posts

Friends

@foreach ($user->friends as $item) @endforeach
No. username email first name last name date of birth Hometown Neighborhood Works At Education Journey Location user image
{{ $item->id }} {{ $item->sender->name }} {{ $item->sender->email }} {{ $item->sender->profile->first_name }} {{ $item->sender->profile->last_name }} {{ $item->sender->profile->date_of_birth }} {{ $user->profile->hometown ?? null }} {{ $user->profile->neighborhood ?? null }} {{ $user->profile->works_at ?? null }} {{ $user->profile->education ?? null }} {{ $user->profile->journey ?? null }} {{ $user->profile->location ?? null }}

Meetings

@foreach ($meetings as $item) @endforeach
No. meeting person date time address note
{{ $item->id }} {{ $item->user->profile->first_name }} {{ $item->date_time }} {{ $item->address }} {{ $item->note }}

Joined Groups

Your Groups

@foreach ($user->userGroups as $item) {{-- --}} @endforeach
No. Total Members Name Privacy Description Actions
{{ $item->id }}
{{ $item->groupAdmin->profile->first_name ?? null }} {{ $item->groupAdmin->email ?? null }}
{{ $item->group_members_count }} {{ $item->group_name }} {{ $item->privacy }} {{ Illuminate\Support\Str::limit($item->description, 10) }} Details

Blocked Users

{{-- --}} {{-- --}} @foreach ($blockUsers as $key => $user) {{-- --}} @endforeach
No. UserRoleFirst Name Last Name Date of birth Hometown Neighborhood Works At Education Journey Location
{{ $key + 1 }}
{{ $user->users->name ?? null }} {{ $user->users->email ?? null }}
{{ $user->users->profile->first_name ?? null }} {{ $user->users->profile->last_name ?? null }} {{ $user->users->profile->date_of_birth ?? null }} {{ $user->users->profile->hometown ?? null }} {{ $user->users->profile->neighborhood ?? null }} {{ $user->users->profile->works_at ?? null }} {{ $user->users->profile->education ?? null }} {{ $user->users->profile->journey ?? null }} {{ $user->users->profile->location ?? null }}

Saved Posts

@foreach ($savePosts as $item) @endforeach
No. Saved By post text post activity background color post image Actions
{{ $item->posts->id }} {{ $item->user->profile->first_name }} {{ $item->posts->post_text }} {{ $item->posts->post_activity }} {{ $item->posts->background_color }} $item->posts->id])}}" class="btn btn-sm btn-light btn-active-light-primary" data-kt-menu-trigger="click" data-kt-menu-placement="bottom-end">Details
@stop