Home
Softono

Nuxt Laravel Passport Example

Open source MIT PHP
65
Stars
29
Forks
0
Issues
5
Watchers
4 years
Last Commit

 About Nuxt Laravel Passport Example

Nuxt.js app as a first-party client powered by Laravel Passport API

Platforms

Web Self-hosted

Languages

PHP

Links

Need Help Installing Nuxt Laravel Passport Example?

We provide expert installation service for this software. Our team will install, configure, and secure Nuxt Laravel Passport Example on your server. plans start at just $30.

Nuxt Laravel Passport Example

View on GitHub

Nuxt & Laravel Passport Example cover

This example implements Nuxt app as a first-party client and Laravel Passport as the backend API. It supports Passport-password grant out of the box which allows your other first-party clients, such as a mobile application, to obtain an access token using an e-mail address and password. But feel free to use other grant types in laravel/passport by extending this.

Installation

Clone the repository

git clone https://github.com/pktharindu/nuxt-laravel-passport-example.git

Switch to the laravel folder first

cd nuxt-laravel-passport-example/laravel

Install all the dependencies using composer

composer install

Copy the example env file and make the required configuration changes in the .env file

cp .env.example .env

Generate a new application key

php artisan key:generate

Run the database migrations (Set the database connection in .env before migrating)

php artisan migrate

Install passport

php artisan passport:install

Start the local development server

php artisan serve

You can now access the server at http://localhost:8000

Switch to the nuxt folder next

cd ../nuxt/

Install all the dependencies using npm

npm install

Copy the example env file and populate it with values from laravel

cp .env.example .env

You can get PASSPORT_PASSWORD_GRANT_ID and PASSPORT_PASSWORD_GRANT_SECRET with php artisan passport:client --password.

serve with hot reload at localhost:3000

yarn run dev