定制 adeelmemon/sociallogin 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

adeelmemon/sociallogin

最新稳定版本:v1.0.0

Composer 安装命令:

composer require adeelmemon/sociallogin

包简介

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

README 文档

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)

统计信息

  • 总下载量: 2
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-23