2017 © Pedro Peláez
 

library connect-sentinel

Connect - Sentinel - OAuth

image

rjvim/connect-sentinel

Connect - Sentinel - OAuth

  • Wednesday, June 21, 2017
  • by rjvim
  • Repository
  • 1 Watchers
  • 0 Stars
  • 944 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

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();

The Versions