https://github.com/thecodeholic/stripe-checkout-laravel
Stripe online payments checkout process full flow implementation in Laravel
https://github.com/thecodeholic/stripe-checkout-laravel
Last synced: 3 months ago
JSON representation
Stripe online payments checkout process full flow implementation in Laravel
- Host: GitHub
- URL: https://github.com/thecodeholic/stripe-checkout-laravel
- Owner: thecodeholic
- Created: 2022-10-06T06:28:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-08T18:50:51.000Z (over 2 years ago)
- Last Synced: 2025-03-21T22:41:28.512Z (4 months ago)
- Language: PHP
- Size: 756 KB
- Stars: 22
- Watchers: 3
- Forks: 22
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stripe checkout process in Laravel
The purpose of this repo is to show you all the necessary steps you should follow to implement complete and correct stripe checkout flow.
This repo is created alongside with the [YouTube Tutorial](https://youtube.com/[ID]).## Full Flow
## Installation & Setup
1. Clone the repository
1. Copy `.env.example` into `.env`
1. Login to your stripe dashboard, take your secret key and put it in `.env`.
1. Go to the project root directory and run `composer install`
1. Run `php artisan key:generate --ansi` to generate key in .env file
1. create empty file under `database/database.sqlite`
1. Run migrations and seed `php artisan migrate`
1. Run `php artisan serve` which will start server at http://localhost:8000## Laravel Sponsors
Support my work by [Buying me a beer](https://buymeacoffee.com/thecodeholic) or [becoming a patron](https://www.patreon.com/thecodeholic).