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.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