A Laravel project demonstrating Github/Facebook/Google/LinkedIn/Twitter social login.
Start by cloning this project on your workstation.
The next thing will be to install all the dependencies of the project.
cd ./laravel-social-login
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
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.
Feel free to suggest an improvement, report a bug, or ask something.