use App\Http\Controllers\ReceptionController; Route::middleware(['auth', 'role:reception'])->group(function () { Route::get('/reception', [ReceptionController::class, 'index']); Route::post('/reception/store', [ReceptionController::class, 'store']); }); use Illuminate\Support\Facades\Auth; Auth::routes();