This is a web app built with Laravel that works as reverse number lookup
Twilio API is used to retrieve number details
PaypalSDK is used to subscribe users and use the service on recurring basis
IPStack is used to get user location and use different Twilio api calls for European Users and North American users
Laravel Boilerplate was used as a starter
###Credentials
User: [email protected]
Password: secret
Download the files above and place on your server.
Environment Files - copy content from .env.example and create a .env file in the root of the project
Composer - run composer install
NPM/Yarn - run npm install or if you have Yarn run yarn
Create Database - You must create your database on your server and on your .env file update the following lines:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
Replace API keys in .env file (PAYPAL, TWILIO, IPSTACK, MAIL SMTP)
Artisan Commands
php artisan key:generate
php artisan migrate
php artisan db:seed
Storage:link
php artisan storage:link
Click here for the official documentation