30 lines
933 B
PHP
Raw Normal View History

2024-04-04 18:04:56 +05:45
<?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 15:15:24 +05:45
*/
2024-04-04 18:04:56 +05:45
2024-04-10 18:06:18 +05:45
Route::middleware('auth')->group(
function () {
2024-04-10 15:15:24 +05:45
2024-04-10 18:06:18 +05:45
Route::prefix('employee')->as('employee.')->group(function () {
Route::post('assignRole', [EmployeeController::class, 'assignRole'])->name('assignRole');
Route::post('changePassword', [EmployeeController::class, 'changePassword'])->name('assignRole');
});
Route::resource('employee', EmployeeController::class)->names('employee');
}
);