LAR_Maintenance/app/Http/Controllers/System/UserController.php

14 lines
219 B
PHP
Raw Permalink Normal View History

2024-07-30 16:13:21 +00:00
<?php
namespace App\Http\Controllers\System;
use App\Http\Controllers\BaseController;
class UserController extends BaseController
{
public function index()
{
return view('system.user.index');
}
}