Initial commit
This commit is contained in:
36
routes/web.php
Normal file
36
routes/web.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
use App\Http\Controllers\DashboardController;
|
||||
use App\Http\Controllers\DocumentController;
|
||||
use App\Http\Controllers\DocumentTypeController;
|
||||
use App\Http\Controllers\JobController;
|
||||
use App\Http\Controllers\Logs\AuditLogsController;
|
||||
use App\Http\Controllers\Logs\SystemLogsController;
|
||||
use App\Http\Controllers\SpecialCodeController;
|
||||
use App\Http\Controllers\SubDirectoratController;
|
||||
use App\Http\Controllers\SubJobController;
|
||||
use App\Http\Controllers\SubSubJobController;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use Modules\Usermanager\Http\Controllers\Users\PermissionsController;
|
||||
use Modules\Usermanager\Http\Controllers\Users\RolesController;
|
||||
use Modules\Usermanager\Http\Controllers\Users\UsersController;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Web Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here is where you can register web routes for your application. These
|
||||
| routes are loaded by the RouteServiceProvider within a group which
|
||||
| contains the "web" middleware group. Now create something great!
|
||||
|
|
||||
*/
|
||||
|
||||
Route::group(['middleware' => ['auth', 'verified']], function () {
|
||||
Route::get('/', [DashboardController::class, 'index'])->middleware(['auth', 'verified']);
|
||||
Route::get('/dashboard', [DashboardController::class, 'index'])->name('dashboard');
|
||||
});
|
||||
|
||||
Route::get('/error', function () {
|
||||
abort(500);
|
||||
});
|
Reference in New Issue
Block a user