Learn how to develop a Laravel 10 Livewire User Registration and Login application
The complete tutorial step by step guide is available on my blog. Laravel 10 Livewire User Registration and Login
Make sure that you have setup the environment properly. You will need minimum PHP 8.1, MySQL/MariaDB, and composer.
- Download the project (or clone using GIT) Git clone https://github.com/allphptricks/laravel-livewire-user-registration-and-login.git
- Copy
.env.example
into.env
and configure your database credentials - Go to the project's root directory using terminal window/command prompt
- Run
composer install
- Set the application key by running
php artisan key:generate --ansi
- Run migrations
php artisan migrate
- Start local server by executing
php artisan serve
- Visit here http://127.0.0.1:8000/register to test the application