This commit is contained in:
2026-05-11 15:49:01 +08:00
parent 7137975827
commit 532b699e37
5 changed files with 43 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class RoleController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('roles.index');
}
}