adeelmemon/sociallogin

A Laravel package for Google, GitHub, and other social logins.

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/adeelmemon/sociallogin

v1.0.0 2025-02-23 10:51 UTC

This package is auto-updated.

Last update: 2025-09-23 20:53:47 UTC


README

Installation Guide

1️⃣ Install the Package via Composer

Run the following command to install the package:

composer require adeelmemon/sociallogin
OR
composer require adeelmemon/sociallogin:dev-main

2️⃣ Run Database Migrations

Your package requires a users table with additional fields like provider, provider_id, avatar, etc.

Run the following command to update the database:

php artisan migrate

User Table Example

Here is how the User table should look:

User Table

3️⃣ Publish Configuration File

To publish the package configuration file, run:

php artisan vendor:publish --tag=config

4️⃣ Install Social Login in the User Model

Run the following command to automatically update the User model with the required HasSocialLogin trait and fillable properties:

php artisan sociallogin:install

User Model Example

Here is how the User.php model should look:

protected $fillable = [ 'name', 'email', 'password', 'provider', 'provider_id', 'avatar', 'email_verified_at' ];

User Model

Usage Guide

Adding Social Login Buttons in Blade View

Place the following code inside your Blade template to allow users to log in via Google, Facebook, or GitHub:

<a href="{{ route('social', 'google') }}" class="social-button btn-danger mb-2">
    <i class="fab fa-google"></i> Login with Google
</a>
<a href="{{ route('social', 'facebook') }}" class="social-button btn-primary mb-2">
    <i class="fab fa-facebook-f"></i> Login with Facebook
</a>
<a href="{{ route('social', 'github') }}" class="social-button btn-dark mb-2">
    <i class="fab fa-github"></i> Login with GitHub
</a>

Environment Configuration

Add the following environment variables in your .env file:

GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
GOOGLE_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/google/callback

GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
GITHUB_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/github/callback

FACEBOOK_CLIENT_ID=your_facebook_client_id
FACEBOOK_CLIENT_SECRET=your_facebook_client_secret
FACEBOOK_REDIRECT_URI=http://127.0.0.1:8000/auth/oauth/facebook/callback

Final Steps

  • Ensure your User model is updated with HasSocialLogin and proper $fillable properties.
  • Make sure you have correctly configured your Google, GitHub, and Facebook apps for OAuth authentication.
  • Test the login routes to verify that authentication works as expected.

Now your Laravel Social Login package is ready to use! 🚀

1️⃣ Uninstall the Package via Composer

Run the following command to uninstall the package:

composer remove adeelmemon/sociallogin

Contact For any inquiries or support, feel free to reach out:

📧 Email: adeelmemon03000@gmail.com 📞 Business Contact: +92 300 2630498 (WhatsApp available)