rajivseelam / connect-sentinel-5.4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Installation

Add to dependencies

"cartalyst/sentinel": "^2.0",
"google/apiclient": "^2.0"

Add to providers

Rjvim\Connect\ConnectServiceProvider::class,

Add to facades

'Connect'   => Rjvim\Connect\ConnectFacade::class,

Run: php artisan vendor:publish

Add more columns to users table:

$table->string('name')->nullable();
$table->enum('gender', ['male', 'female', 'others'])->nullable();

Extend User model with Rjvim\Connect\Models\User

Add routes:

Connect::google();

About


Languages

Language:PHP 100.0%