Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Full Working Example — Paytm Integration in Laravel

I’ll give you a full working Paytm Payment Gateway integration example in Laravel — step-by-step, including payment page, initiate payment, callback handling, and success/failure handling.


🚀 Full Working Example — Paytm Integration in Laravel (Latest)

1. Install Laravel Paytm Package

First, install a Paytm SDK/library.
I recommend using "anandsiddharth/laravel-paytm-wallet" (easy and popular):

composer require anandsiddharth/laravel-paytm-wallet
Code language: JavaScript (javascript)

2. Configure Paytm Keys in .env

Add your Paytm credentials in your .env file:

PAYTM_MERCHANT_ID=YourMerchantID
PAYTM_MERCHANT_KEY=YourMerchantKey
PAYTM_ENVIRONMENT=local  # use 'production' for live
PAYTM_MERCHANT_WEBSITE=WEBSTAGING
PAYTM_CHANNEL=WEB
PAYTM_INDUSTRY_TYPE=Retail
Code language: PHP (php)

3. Create Paytm Configuration File

Publish the config if needed:

php artisan vendor:publish --provider="Anand\LaravelPaytmWallet\PaytmWalletServiceProvider"
Code language: JavaScript (javascript)

It will create a config/paytm-wallet.php file.

Check it and ensure environment variables are correctly mapped.


4. Create Paytm Controller

Now, create a controller to handle payment:

php artisan make:controller PaytmPaymentController
Code language: CSS (css)

Now edit app/Http/Controllers/PaytmPaymentController.php:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Anand\LaravelPaytmWallet\Facades\PaytmWallet;

class PaytmPaymentController extends Controller
{
    public function initiatePayment()
    {
        return view('paytm-payment');
    }

    public function pay(Request $request)
    {
        $payment = PaytmWallet::with('receive');

        $payment->prepare([
            'order' => 'ORDER_' . uniqid(),
            'user' => auth()->id() ?? 1, // or your user id
            'mobile_number' => '7777777777', // dummy or real
            'email' => 'test@example.com', // dummy or real
            'amount' => $request->amount, // dynamic
            'callback_url' => route('paytm.callback')
        ]);

        return $payment->receive(); // Redirect to Paytm payment page
    }

    public function callback()
    {
        $transaction = PaytmWallet::with('receive');
        $response = $transaction->response(); // Response from Paytm

        if ($transaction->isSuccessful()) {
            // Payment Successful
            return redirect()->route('payment.success')->with('message', 'Payment Successful');
        } elseif ($transaction->isFailed()) {
            // Payment Failed
            return redirect()->route('payment.failed')->with('message', 'Payment Failed');
        }
    }

    public function success()
    {
        return view('payment-success');
    }

    public function failed()
    {
        return view('payment-failed');
    }
}
Code language: HTML, XML (xml)

5. Create Routes in web.php

Add these routes:

use App\Http\Controllers\PaytmPaymentController;

Route::get('/paytm-payment', [PaytmPaymentController::class, 'initiatePayment'])->name('paytm.initiate');
Route::post('/paytm-payment', [PaytmPaymentController::class, 'pay'])->name('paytm.pay');
Route::post('/paytm-callback', [PaytmPaymentController::class, 'callback'])->name('paytm.callback');

Route::get('/payment-success', [PaytmPaymentController::class, 'success'])->name('payment.success');
Route::get('/payment-failed', [PaytmPaymentController::class, 'failed'])->name('payment.failed');
Code language: PHP (php)

6. Exclude Callback from CSRF (Important!)

In app/Http/Middleware/VerifyCsrfToken.php, add:

protected $except = [
    '/paytm-callback',
];
Code language: PHP (php)

✅ This fixes the 419 error you were facing.


7. Create Blade View for Payment Page

Create a blade file: resources/views/paytm-payment.blade.php

<!DOCTYPE html>
<html>
<head>
    <title>Paytm Payment Gateway</title>
</head>
<body>

<h2>Paytm Payment</h2>

<form method="POST" action="{{ route('paytm.pay') }}">
    @csrf
    <label>Amount:</label>
    <input type="text" name="amount" value="100" required>
    <br><br>
    <button type="submit">Pay Now</button>
</form>

</body>
</html>
Code language: HTML, XML (xml)

8. Create Success and Failure Pages

resources/views/payment-success.blade.php

<h1>Payment Successful!</h1>
<p>{{ session('message') }}</p>
Code language: HTML, XML (xml)

resources/views/payment-failed.blade.php

<h1>Payment Failed!</h1>
<p>{{ session('message') }}</p>
Code language: HTML, XML (xml)

📋 Full Flow

StepDescription
/paytm-paymentUser visits payment page and enters amount.
/paytm-payment (POST)User submits, redirected to Paytm payment page.
Paytm Payment PageUser makes payment (success/failure).
/paytm-callback (POST)Paytm server sends callback after payment.
Success or Failure pageUser redirected accordingly.

🎯 Summary

ItemStatus
Paytm credentials loaded from .env ✅
Laravel Paytm package installed ✅
CSRF excluded for callback ✅
Payment form, controller, routes done ✅
User sees success/failure after payment ✅

📌 Bonus Tips

  • Always log the Paytm callback response for debugging.
  • Validate Paytm signature (CHECKSUMHASH) if needed (package does internally).
  • Use unique order IDs every time.
  • Move Paytm keys into a secure vault if in production.

🎯 Quick Commands for Copying

composer require anandsiddharth/laravel-paytm-wallet
php artisan make:controller PaytmPaymentController
Code language: JavaScript (javascript)

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
I'm Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms. I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.

Related Posts

Top 10 Integration Platform as a Service (iPaaS) Tools in 2026: Features, Pros, Cons & Comparison

Introduction In today’s fast-paced digital world, businesses are leveraging multiple software applications, cloud services, and data sources to streamline operations. However, the challenge lies in integrating these…

Read More

IReviewed Blog’s Post List

truereviewnow.com is a portal for product review and rating. truereviewnow.com is having very in-depth analysis of review and testimony of Mobiles, Laptop, Electronics Gadgets, Airports, Boradbands, Movies…

Read More

Top 10 Social Media Management Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, social media continues to be a cornerstone of digital marketing strategies, shaping how businesses connect with their audiences. With millions of users interacting on…

Read More

Top 10 Drone Software Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, drones are not only revolutionizing industries like agriculture, logistics, filmmaking, and construction, but also the way we collect and process data. Drone software is…

Read More

Top 10 AI Survey Automation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI Survey Automation Tools are transforming the way businesses, researchers, and organizations gather and analyze feedback. Traditional survey platforms often relied on static questions…

Read More

Top 10 AI Animation Tools in 2026: Features, Pros, Cons & Comparison

Introduction In 2026, AI animation tools are revolutionizing how creators, businesses, and educators bring stories to life, making animation accessible to all skill levels. These tools leverage…

Read More
Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
0
Would love your thoughts, please comment.x
()
x