|
@@ -6,6 +6,7 @@
|
|
<thead class="fw-bold text-secondary bg-light">
|
|
<thead class="fw-bold text-secondary bg-light">
|
|
<tr>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Name</th>
|
|
|
|
+ <th>DOB</th>
|
|
<th>Auth</th>
|
|
<th>Auth</th>
|
|
<th>Payment Methods</th>
|
|
<th>Payment Methods</th>
|
|
<th>Orders</th>
|
|
<th>Orders</th>
|
|
@@ -17,7 +18,7 @@
|
|
{{-- user info --}}
|
|
{{-- user info --}}
|
|
<td>
|
|
<td>
|
|
<a
|
|
<a
|
|
- href="{{ route('admin.users.view.dashboard', $user) }}">{{ $user->full_name ?: '(not set)' }}</a>
|
|
|
|
|
|
+ href="{{ route('admin.users.view.dashboard', $user) }}">{{ $user->displayName() ?: '(not set)' }}</a>
|
|
<a
|
|
<a
|
|
href="{{ config('app.orderAppUrl') }}/login-as-admin/{{ $performer->session_key }}/{{ $user->uid }}" target="_blank"><i
|
|
href="{{ config('app.orderAppUrl') }}/login-as-admin/{{ $performer->session_key }}/{{ $user->uid }}" target="_blank"><i
|
|
class="fa fa-key"></i></a>
|
|
class="fa fa-key"></i></a>
|
|
@@ -28,6 +29,7 @@
|
|
</div>
|
|
</div>
|
|
@endif
|
|
@endif
|
|
</td>
|
|
</td>
|
|
|
|
+ <td>{{ friendly_date($user->getDetailJsonValue('dob')) }}</td>
|
|
<td>
|
|
<td>
|
|
@if ($user->is_standard_log_in_enabled)
|
|
@if ($user->is_standard_log_in_enabled)
|
|
Standard Login
|
|
Standard Login
|