October 05, 2023

Laravel Passwordless Authentication

Learn how to implement Laravel Passwordless Authentication with Inertia.js and React.js. This method allows users to log in securely without the need for a password, enhancing user experience and simplifying authentication in Laravel applications.

Laravel Passwordless Authentication

Example of Laravel Passwordless Authentication using Inertia JS and React JS.

Source code : GitHub

Installation and Usage

Clone the repository

git clone https://github.com/raprmdn/laravel-passwordless-authentication.git
bash

Go to the project directory

cd laravel-passwordless-authentication
bash

Install dependencies

# composer
composer install
 
# npm
npm install
bash

Copy .env.example to .env

cp .env.example .env
bash

Generate an application key

php artisan key:generate
bash

Run migration

php artisan migrate
bash

Run the application

php artisan serve
 
npm run dev
 
php artisan queue:work
bash

Preview

Laravel Passwordless Authentication Preview
Laravel Passwordless Authentication Preview
raprmdn
Rafi Putra Ramadhan
Laravel
ReactJS
InertiaJS