egorsmkv / laravel-payments-masterclass

Code for Laravel Payments (LiqPay, WayForPay, Fondy) Masterclass

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Laravel Payments Masterclass

Note

Final code of the masterclass is here: https://github.com/egorsmkv/laravel-payments-masterclass-final

Usage

Fill the dev.env file before the start.

Next, run the following commands:

# Create the app docker image
docker build --tag laravel_app:1.0 docker/apps

# Up containers
docker-compose -f docker-compose.dev.yml up

# Enter the container
docker exec -it laravel-payments-masterclass-apps-1 bash

# Install required libraries
cd /app/frontend && php composer.phar install

# Copy Laravel environment variables file
cp .env.dev.example .env

# Generate "APP_KEY"
php artisan key:generate

# Apply migrations
php artisan migrate

About

Code for Laravel Payments (LiqPay, WayForPay, Fondy) Masterclass


Languages

Language:PHP 97.4%Language:Blade 2.4%Language:Dockerfile 0.2%