Before we start, make sure you have the following installed:
- Laravel version 10 or later
- PHP version 8.1 or later
- Unzip the downloaded archive
- Copy and paste laravel-livewire folder in your projects folder. Rename the folder to your project's name
- In your terminal run
composer install
- Copy
.env.backup
to.env
and updated the configurations (mainly the database configuration) - In your terminal run
php artisan key:generate
- Run
php artisan migrate --seed
to create the database tables and seed the roles and users tables - Run
php artisan storage:link
to create the storage symlink.