ProjectLaravelFeatured

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.

Stack

Laravel
ReactJS
InertiaJS
Year
2023

Laravel Passwordless Authentication

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

Source code : GitHub

Installation and Usage

Clone the repository

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

Go to the project directory

Terminal
cd laravel-passwordless-authentication

Install dependencies

Terminal
# composer
composer install
 
# npm
npm install

Copy .env.example to .env

Terminal
cp .env.example .env

Generate an application key

Terminal
php artisan key:generate

Run migration

Terminal
php artisan migrate

Run the application

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

Preview

Laravel Passwordless Authentication Preview
Laravel Passwordless Authentication Preview