PHP code example of marvinlabs / laravel-setup-wizard
1. Go to this page and download the library: Download marvinlabs/laravel-setup-wizard library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
marvinlabs / laravel-setup-wizard example snippets
'providers' => [
// ...
// Other Service Providers
// ...
MarvinLabs\SetupWizard\ServiceProvider::class,
],
'aliases' => [
// ...
// Other aliases
// ...
'SetupWizard' => MarvinLabs\SetupWizard\Facades\SetupWizard::class,
],