@extends('admin.layout.header') @section('title') Danh sách người dùng @endsection @section('content')
{{-- HEADER --}}
👤 Danh sách người dùng
{{-- BODY --}}
@foreach($users as $user) @endforeach
ID Người dùng Email Quyền Trạng thái Hành động
{{ $user->id }}
{{ $user->name }}
{{ $user->email }} @foreach($user->roles as $role) {{ $role->name }} @endforeach @if($user->email_verified_at) ✔ Đã xác minh @else ✖ Chưa xác minh @endif
✏️
@csrf @method('DELETE')
{{-- PAGINATION --}}
Hiển thị {{ $users->firstItem() }} - {{ $users->lastItem() }} / {{ $users->total() }}
{{ $users->links('pagination::bootstrap-5') }}
@endsection