prefix('supplier') ->name('supplier.') ->middleware(['SetPortalLocale', 'CheckSupplierPortal', 'SharePortalNavigation:supplier', 'SupplierSidebarMenu']) ->group(function () { Route::get('supply-chain/rfq', [RfqController::class, 'index'])->name('supplychain.rfq.index'); Route::get('supply-chain/rfq/{id}', [RfqController::class, 'show'])->name('supplychain.rfq.show'); Route::post('supply-chain/rfq/{id}/quote', [RfqController::class, 'submitQuote'])->name('supplychain.rfq.quote'); });