{{-- --}} @if ($action === 'list') @if ($message)
{{ $message }}
@endif

User Management

@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