PHP Classes

File: README.md

Recommend this page to a friend!
  Classes of Channaveer Hakari   Laravel Stripe Integration Tutorial   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: Laravel Stripe Integration Tutorial
Process Stripe payments in a Laravel application
Author: By
Last change:
Date: 5 months ago
Size: 780 bytes
 

Contents

Class file image Download

About This Project

Stripe Integration With Laravel 7.X

Installation Steps

  • Clone the project
  • Add the STRIPE keys in .env file of your project
  • Stripe package installation

    If you have cloned this project then just run the following command

    composer install
    

    If you are directly integrating in your project then use the following command

    composer require stripe/stripe-php
  • Now add the stripe keys in .env file with same key name and your own stripe values

    STRIPE_PUBLISH_KEY=pk_test...
    STRIPE_SECRET_KEY=sk_test...
    

Read More On

I have written whole article on this - <a href="https://stackcoder.in/posts/stripe-payment-integration-with-laravel">Stripe Integration With Laravel</a>