1. Go to this page and download the library: Download jenryollivierre/laranonce 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/ */
namespace App\Http\Controllers\CartController;
use Illuminate\Http\Request;
use Laranonce\Facades\Nonce;
class CartController extends Controller
{
public function __invoke(Request $request)
{
$nonce = $request->nonce;
if (! Nonce::verify('submit_cart_paypal_payment', $nonce)) {
// handle failed next action
}
}
}
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// Frequency determined based on expiration time set in config file
$schedule->command('nonce:prune')->everyHour();
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.