PHP code example of sachin-sanchania / laravel-eazypay

1. Go to this page and download the library: Download sachin-sanchania/laravel-eazypay 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/ */

    

sachin-sanchania / laravel-eazypay example snippets


use SachinSanchania\Eazypay\Eazypay;

class PaymentController extends Controller
{ 
    public function payment()
    {
        $amount        = 1000;
        $referenceNo   = 1; // Stands for order ID or any related database identifier
        $optionalField = '10|10|10|10'; // Optional, must be in pipe (`|`) delimiter format as per ICICI's documentation

        $eazypay    = new Eazypay();
        $paymentUrl = $eazypay->getPaymentUrl($amount, $referenceNo, $optionalField);

        return redirect()->to($paymentUrl); // Redirects the user to ICICI Eazypay payment gateway
    }
}
shell
php artisan optimize:clear
shell
php artisan vendor:publish --provider="SachinSanchania\Eazypay\EazypayServiceProvider"
shell
public function paymentResponse(Request $request)
{
    $response = $request->all();

    // Validate and process payment response
    if (isset($response['status']) && $response['status'] == 'success') {
        // Payment successful, update order status
    } else {
        // Payment failed or pending, handle accordingly
    }

    return view('payment.status', compact('response'));
}