response()->json([ 'frontend_cliente_url' => config('preventivi.frontend_cliente_url'), ])); Route::prefix('carrello')->group(function () { Route::post('aggiungi', [CarrelloController::class, 'aggiungi']); Route::get('{token}', [CarrelloController::class, 'mostra']); Route::delete('{token}/item/{item}', [CarrelloController::class, 'rimuoviItem']); Route::post('{token}/conferma', [CarrelloController::class, 'conferma']); });