[], 'as' => 'sanghs.', 'prefix' => 'sanghs' ], function () { Route::get('/', [SanghController::class, 'index'])->name('index'); Route::get('/listing', [SanghController::class, 'listing'])->name('listing'); Route::get('{id}/show', [SanghController::class, 'show'])->name('show'); Route::patch('{id}/update', [SanghController::class, 'update'])->name('update'); });