{{-- This page is rendered by the error() method inside Front/PaypalController.php (if making the order PayPal payment fails) --}} @extends('front.layout.layout') @section('content')

YOUR Payment Failed!

Please try again after some time and contact us if there is any enquiry.

@endsection {{-- Forget/Remove some data in the Session after making the PayPal payment --}} @php use Illuminate\Support\Facades\Session; Session::forget('grand_total'); // Deleting Data: https://laravel.com/docs/9.x/session#deleting-data Session::forget('order_id'); // Deleting Data: https://laravel.com/docs/9.x/session#deleting-data Session::forget('couponCode'); // Deleting Data: https://laravel.com/docs/9.x/session#deleting-data Session::forget('couponAmount'); // Deleting Data: https://laravel.com/docs/9.x/session#deleting-data @endphp