PHP code example of aelisvaddoriya / web-installer
1. Go to this page and download the library: Download aelisvaddoriya/web-installer 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/ */
aelisvaddoriya / web-installer example snippets
namespace Your\Namespace;
use Filament\Forms\Components\Wizard\Step;
use Shipu\WebInstaller\Concerns\StepContract;
class Overview implements StepContract
{
public static function make(): Step
{
return Step::make('overview')
->label('Overview')
->schema([
// Add Filament Fields Here
]);
}
}