PHP code example of matiullah31 / safepay-laravel
1. Go to this page and download the library: Download matiullah31/safepay-laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
matiullah31 / safepay-laravel example snippets
public function paymentCompleted(Request $request)
{
$data = $request->input();
$safepay = new Safepay;
if ($safepay->validate_signature($data['tracker'], $data['sig']) === false) {
return redirect()->route('checkout.index')->with(['error' => 'Payment Failed']);
}
return redirect(url('order-completed/'.$data['sig']));
}
public function safepayNotification(Request $request)
{
$data = $request->all();
$safepay = new Safepay;
$x_sfpy_signature = $request->header('x-sfpy-signature');
if ($safepay->verifyWebhook($data, $x_sfpy_signature) === false) {
//Web Hook verification failed
}
}