%PDF- %PDF-
Direktori : /var/www/html/hr/api/routes/api/v1/ |
Current File : /var/www/html/hr/api/routes/api/v1/configurations.php |
<?php use App\Models\Module; use Illuminate\Support\Facades\Route; Route::group([ 'middleware' => [ 'auth:api', 'role:ADMIN|HR', 'module:' . Module::CONFIGURATIONS_MODULE, ], ], function () { Route::resource('configurations', 'ConfigurationsController') ->only([ 'index', 'update', ]); });