User Management

{{ $action === 'create' ? 'Create' : ($action === 'edit' ? 'Edit' : '') }}

@if ($action === 'list') @if ($message)
{{ $message }}
@endif
@foreach ($results as $user) @endforeach
# Name Email Group Create Date Action
{{ $user->username }} {{ $user->email }}
    @php $groups = $user->groups->take(5); $remainingCount = $user->groups->count() - $groups->count(); @endphp @foreach ($groups as $group)
  • {{ $group->name }}
  • @endforeach @if ($remainingCount > 0)
  • + {{ $remainingCount }} more
  • @endif
{{ $user->created_at }}
{{ $results->links('livewire.paginate-custom') }}
@elseif($action === 'create') @elseif($action === 'edit') @else
@endif