Manage users for this dealer context. Roles and departments are dealer-scoped.
| Name | Department | Branch | Roles | Status | Created | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $user->full_name }} | {{ $user->email }} @if ($user->is_builtin) Built-in @endif | {{ optional($user->department)->name ?? '—' }} | {{ optional($user->branch)->name ?? '—' }} | {{ $user->roles->pluck('name')->join(', ') ?: '—' }} | @if ($user->is_disabled) Disabled @else Active @endif | {{ $user->created_at?->format('Y-m-d') ?? '—' }} |
@can('settings.users.manage')
Edit
@endcan
@can('settings.users.security')
@if (auth()->id() !== $user->id)
@if (! $user->is_builtin)
@endif
@endif
@endcan
|
| No users found. | |||||||
These users have been soft deleted and are not able to log in.
| Name | Department | Roles | Deleted At | Actions | |
|---|---|---|---|---|---|
| {{ $user->full_name }} | {{ $user->email }} | {{ optional($user->department)->name ?? '—' }} | {{ $user->roles->pluck('name')->join(', ') ?: '—' }} | {{ $user->deleted_at?->format('Y-m-d H:i') ?? '—' }} |
|