Laravel Quickpay Package For Secure Payments
The Quickpay package for Laravel helps you quickly utilize the Quickpay API client using a fluent object and service Facade, allowing secure and reliable payment acceptance and user data interface via API.
The Quickpay package for Laravel, by Morten Bak, helps you quickly utilize the Quickpay API client using a fluent object and service Facade. Quickpay allows you to accept payments securely and reliably, and this package can help you interface with your user's data via the API: use \Netbums\Quickpay\Facades\Quickpay; // Get all payments$payments = Quickpay::payments()->all(); // Get a single payment$payment = Quickpay::payments()->find($paymentId); // Create a payment link$paymentLink = Quickpay::payments()->createLink(new PaymentLink( id: $createdPayment['id'], amount: 100)); // Refund a...