msppack/laravelapp

There is no license information available for the latest version (1.0.1) of this package.

Package for create easly form with single sintex

1.0.1 2017-06-02 12:30 UTC

This package is not auto-updated.

Last update: 2024-04-28 00:27:08 UTC


README

Step 1 : php artisan make:auth
Step 2 : composer require msppack/laravelapp
Step 3 : Add service provider in config/app.php 
        MspPack\LaravelApp\LaravelAppServiceProvider::class,
Step 4 : add in User model $fillable = [---,'provider','provider_id',---]
Step 5 : php artisan migrate
Step 6 : add key into config/services.php 
		'twitter' => [
	        'client_id' => 'TWITTER_CLIENT_ID',
	        'client_secret' => 'TWITTER_CLIENT_SECRET,
	        'redirect' => 'http://localhost:8000/auth/twitter/callback',
	    ],

replace twitter from redirect url as per your social login like, google,facebook and Add this type array respective social login you want