AppPAY enables users to signup/login and deposit certain amount of cash on the platform. Total number of deposits and total cash can be viewed from the dashboard.
Visit http://naira-apppay.herokuapp.com/
for a working DEMO
Note! Make sure you have git installed locally on your computer first. Find a location on your PC where you want to store the project. You can change the name of the folder to be created locally, by changing the last part of the code snippet below to match the name you want your folder to be called.
You will need to be inside the project folder to enter all of the rest of the commands in this guide.
You must now install all of the project dependencies.
composer install
Create a copy of the .env.example file in the project and name the copy simply .env.
cp .env.example .env
Make sure that you have already created an .env file before doing this.
php artisan key:generate
Create an empty database for the project using the database tools you prefer.
In the .env file fill in the DB_HOST, DB_PORT, DB_DATABASE, DB_USERNAME, and DB_PASSWORD options to match the credentials of the database you just created. This will allow us to run migrations and seed the database in the next step.
Once your credentials are in the .env file, now you can migrate your database.
php artisan migrate
Once everything is in place and database is running run
php artisan serve
to start the application on your localhost port 8000