Date
October 05, 2023 | Featured
Rafi Putra Ramadhan
Laravel
ReactJS
InertiaJS
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
Terminal
git clone https://github.com/raprmdn/laravel-passwordless-authentication.gitGo to the project directory
Terminal
cd laravel-passwordless-authenticationInstall dependencies
Terminal
# composer
composer install
# npm
npm installCopy .env.example to .env
Terminal
cp .env.example .envGenerate an application key
Terminal
php artisan key:generateRun migration
Terminal
php artisan migrateRun the application
Terminal
php artisan serve
npm run dev
php artisan queue:workPreview

Laravel Passwordless Authentication Preview