It's a Laravel package that makes it easy to install your application with just one click. With this package, you can quickly set up your application's environment, dependencies, and configurations without having to manually run multiple commands or manually edit files. It streamlines
You can install the package with Composer using the following command:
composer require pixamo/installer
Copy the package config to your local config with the publish command:
php artisan vendor:publish --tag=installer
You can also check the installer is now active or not.
use Pixamo\Installer\Installer;
Installer::isActive();
If installer is active you can redirect it to installer page.
if(Installer::isActive())
{
return redirect('install');
}