Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mohitsingla46/laravel-payments

A Laravel project that facilitates payment processing with various payment gateways like Stripe. This module simplifies the integration of payment systems, ensuring secure and efficient transactions in your Laravel applications.
https://github.com/mohitsingla46/laravel-payments

laravel10 payment-gateway payment-integration stripe-payments

Last synced: 6 days ago
JSON representation

A Laravel project that facilitates payment processing with various payment gateways like Stripe. This module simplifies the integration of payment systems, ensuring secure and efficient transactions in your Laravel applications.

Awesome Lists containing this project

README

        

# Stripe Payments with Laravel

A Laravel project demonstrating credit/debit card payment using Stripe.

## Getting started

### Project configuration

Start by cloning this project on your workstation.

The next thing will be to install all the dependencies of the project.

```sh
cd ./laravel-payments
composer install
```

Once the dependencies are installed, you can now configure your project by creating a new `.env` file containing the environment variables used for development.

```
cp .env.example .env
```

Create database tables using migration command.

```
php artisan migrate
```

Seed the user with following command.

```
php artisan db:seed
```

### Launch and discover

You are now ready to launch the Laravel application using the command below.

```
php artisan serve
```

You can now head to `http://127.0.0.1:8000/` and see that it works.

## Contributing

Feel free to suggest an improvement, report a bug, or ask something.