@extends('layouts.default') @section('content')
image
{{-- {{ $user->name }}
{{ $user->email }}
--}}
{{ $post->total_likes }}
Likes
{{ $post->total_comments }}
Comments
{{ $post->total_shares }}
Shares
Details
Post Text
Post Activity
Background Color
Check In
{{--
Date Of Birth
{{ $post->date_of_birth }}
--}}

Likes

Comments

@foreach ($post->comments as $item) @endforeach
No. comment username email first name last name date of birth user image
{{ $item->id }} {{ $item->body }} {{ $item->user->name }} {{ $item->user->email }} {{ $item->user->profile->first_name }} {{ $item->user->profile->last_name }} {{ $item->user->profile->date_of_birth }}

Reported Comments

@foreach ($post->reportedComments as $item) @endforeach
No. comment username email first name last name date of birth user image Actions
{{ $item->comment->id }} {{ $item->comment->body }} {{ $item->comment->user->name }} {{ $item->comment->user->email }} {{ $item->comment->user->profile->first_name }} {{ $item->comment->user->profile->last_name }} {{ $item->comment->user->profile->date_of_birth }} Approve

Tag Friends

@foreach ($post->tagFriends as $item) @endforeach
No. name email first name last name date of birth user image
{{ $item->id }} {{ $item->friends->name ?? null }} {{ $item->friends->email ?? null }} {{ $item->friends->profile->first_name ?? null }} {{ $item->friends->profile->last_name ?? null }} {{ $item->friends->profile->date_of_birth ?? null }}
@stop