PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
social-login
/
src
<?php namespace Botble\SocialLogin; use Botble\PluginManagement\Abstracts\PluginOperationAbstract; use Botble\Setting\Models\Setting; class Plugin extends PluginOperationAbstract { public static function remove() { Setting::whereIn('key', [ 'social_login_enable', 'social_login_facebook_enable', 'social_login_facebook_app_id', 'social_login_facebook_app_secret', 'social_login_github_enable', 'social_login_github_app_id', 'social_login_github_app_secret', 'social_login_google_enable', 'social_login_google_app_id', 'social_login_google_app_secret', 'social_login_linkedin_enable', 'social_login_linkedin_app_id', 'social_login_linkedin_app_secret', ])->delete(); } }
[-] Plugin.php
[edit]
[+]
..
[+]
Facades
[+]
Providers
[+]
Http
[+]
Supports