Installation
Add to dependencies, (*1)
"cartalyst/sentinel": "^2.0",
"google/apiclient": "1.0.*@beta",
Add to providers, (*2)
Rjvim\Connect\ConnectServiceProvider::class,
Add to facades, (*3)
'Connect' => Rjvim\Connect\ConnectFacade::class,
Run: php artisan vendor:publish, (*4)
Add more columns to users table:, (*5)
$table->string('name')->nullable();
$table->text('description')->nullable();
$table->enum('gender', ['male', 'female', 'others'])->nullable();
$table->date('birthday')->nullable();
$table->text('photo')->nullable();
Extend User model with Rjvim\Connect\Models\User, (*6)
Add routes:, (*7)
Connect::google();