Laravel + Vue Single Page Application
A Laravel+Vue SPA sample project
composer install
.env
and set your database connection detailsphp artisan key:generate
and php artisan jwt:secret
)php artisan migrate
php artisan db:seed
npm install
# build and watch
npm run watch
# serve with hot reloading
npm run hot
npm run production
This project comes with GitHub as an example for Laravel Socialite.
To enable the provider create a new GitHub application and use https://example.com/api/oauth/github/callback
as the Authorization callback URL.
Edit .env
and set GITHUB_CLIENT_ID
and GITHUB_CLIENT_SECRET
with the keys form your GitHub application.
For other providers you may need to set the appropriate keys in config/services.php
and redirect url in OAuthController.php
.
To enable email verification make sure that your App\User
model implements the Illuminate\Contracts\Auth\MustVerifyEmail
contract.
Original repository