You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
343 B

<?php
use App\Http\Controllers\Api\V1\Lookup\RoleLookupController;
use Illuminate\Support\Facades\Route;
Route::prefix('v1')->as('api.v1.')->middleware('auth:sanctum')->group(function () {
Route::prefix('lookups')->as('lookups.')->group(function () {
Route::get('/roles', RoleLookupController::class)->name('roles');
});
});