We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68917eb commit bd79992Copy full SHA for bd79992
app/Http/Controllers/Api/Client/Store/PayPalController.php
@@ -42,7 +42,7 @@ public function purchase(PayPalRequest $request): JsonResponse
42
}
43
44
$amount = $request->input('amount');
45
- $cost = config('gateways.paypal.cost', 1) / 100 * $amount;
+ $cost = config('gateways.cost', 1) / 100 * $amount;
46
$currency = config('gateways.currency', 'USD');
47
48
DB::table('paypal')->insert([
0 commit comments