New-OMIS/Modules/Employee/routes/web.php

24 lines
794 B
PHP
Raw Normal View History

2024-04-04 12:19:56 +00:00
<?php
use Illuminate\Support\Facades\Route;
use Modules\Employee\Http\Controllers\EmployeeController;
/*
|--------------------------------------------------------------------------
| 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!
|
2024-04-10 09:30:24 +00:00
*/
2024-04-04 12:19:56 +00:00
2024-04-10 09:30:24 +00:00
Route::group(['middleware' => 'auth'], function () {
Route::post('assignRole', [EmployeeController::class, 'assignRole'])->name('employee.assignRole');
2024-04-04 12:19:56 +00:00
Route::resource('employee', EmployeeController::class)->names('employee');
2024-04-10 09:30:24 +00:00
Route::group(['prefix' => 'employee'], function () {
});
2024-04-04 12:19:56 +00:00
});