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