@extends('layouts.light.master') @section('title', 'User Menu') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')
| Personal Information | |
|---|---|
| ID | {{ $user->id }} |
| Type | @if (!empty($user->getRoleNames())) @foreach ($user->getRoleNames() as $role) {{ $role }} @endforeach @else N/A @endif |
| Username | {{ $user->username ?? 'N/A' }} |
| First Name | {{ $user->first_name ?? 'N/A' }} |
| Last Name | {{ $user->last_name ?? 'N/A' }} |
| {{ $user->email ?? 'N/A' }} | |
| Cell Phone | {{ $user->phone ?? 'N/A' }} |
| Company Name | {{ $user->company_name ?? 'N/A' }} |
| Status | {{ ucfirst($user->status) }} |
| Other Information | |
|---|---|
| Country | {{ $user->country_id ?? 'N/A' }} |
| State | {{ $user->state->name ?? 'N/A' }} |
| City | {{ $user->city_name ?? 'N/A' }} |
| County | {{ $user->county_name ?? 'N/A' }} |
| Zip Code | {{ $user->zip_code ?? 'N/A' }} |
| Address | {{ $user->address ?? 'N/A' }} |
| Tax Exemption | {{-- --}} |
| Created At | {{ $user->created_at->format('d-m-Y') }} |