A Laravel wizard installer package for Laravel 9.x and higher.
Require this package:
composer require dacoto/laravel-wizard-installer
You need to publish the config file for this package. This will add the file config/installer.php
, where you can configure this package.
php artisan vendor:publish --provider="dacoto\LaravelWizardInstaller\Providers\LaravelWizardInstallerProvider" --tag=config
In order to edit the default template, the views must be published as well. The views will then be placed in resources/views/vendor/wizzard-installer
.
php artisan vendor:publish --provider="dacoto\LaravelWizardInstaller\Providers\LaravelWizardInstallerProvider" --tag=views