@extends('backoffice.layouts.app') @section('contents')

User Profile

User Details
User Name {{ $user->real_name ?? '' }}
Nick Name {{ $user->nickname ?? '' }}
Phone {{ $user->phone_country_code ?? '' }} {{ $user->phone_number ?? 'N/A' }}
Gender {{ $user->gender ?? 'N/A' }}
Country {{ $user->country ?? 'N/A' }}
Address {{ $user->address ?? 'N/A' }}
City {{ $user->city ?? 'N/A' }}
Profile Photo @if (!empty($user->profile_photo)) Profile Photo @else N/A @endif
Verification Status {{ $user->verification_status ?? 'N/A' }}
Book Name {{ $user->book_name ?? 'N/A' }}
Author Name {{ $user->author_name ?? 'N/A' }}
Short Description {{ $user->short_description ?? 'N/A' }}
Favorite Quotes {{ $user->favorite_quotes ?? 'N/A' }}
Book Cover @if (!empty($user->book_cover)) Book Cover @else N/A @endif
Profile Likes {{ $user->prfile_likes ?? '0' }}
Book Likes {{ $user->book_likes ?? '0' }}

User Subscriptions

@if ($subscriptions->isEmpty()) @else @foreach ($subscriptions as $sub) @endforeach @endif
Plan Name Start Date End Date
No subscriptions found.
{{ Str::title($sub->subscription_type) ?? '-' }} {{ $sub->subscription_start ? \Carbon\Carbon::parse($sub->subscription_start)->format('Y-m-d') : '-' }} {{ $sub->subscription_end ? \Carbon\Carbon::parse($sub->subscription_end)->format('Y-m-d') : '-' }}
@endsection