user listing with pagination

This commit is contained in:
2026-05-11 11:18:23 +08:00
parent 5f361d0e39
commit 27c2869109
4 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\View\View;
class UserController extends Controller
{
/**
* Display a listing of users.
*/
public function index(): View
{
$users = User::query()
->orderBy('name')
->paginate(10, ['id', 'name', 'email', 'created_at']);
return view('user.index', [
'users' => $users,
]);
}
}