@extends('admin.layouts.masterlayout') @section('title') View User @endsection @section('head_title') User Management @endsection @section('content')

User Details

User List / User Details

Personal Details

user img

{{ $user->name ?? '-' }}

User

Phone

{{ $user->phone ?? '-' }}

Email

{{ $user->email ?? '-' }}

Joined Date

{{ !empty($user->created_at) ? $user->created_at->format('F d, Y') : '-' }}

Address

{{ $user->address ?? '-' }}

Country

{{ $user->country ?? '-' }}

State

{{ $user->state ?? '-' }}

City

{{ $user->city ?? '-' }}

Booking Details

Total Booking

{{ $totalBookings }}

No-Show Booking

{{ $noShowBookings }}

Last Booking Date

{{ $lastBookingDate ? \Carbon\Carbon::parse($lastBookingDate)->format('d-m-Y') : '-' }}

Booking History

# Shop Name Artist Appointment Date Placement Booking Amount Status Action
@endsection @section('script') @endsection