PHP code example of iracode-com / filament-gui-panel-builder

1. Go to this page and download the library: Download iracode-com/filament-gui-panel-builder 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/ */

    

iracode-com / filament-gui-panel-builder example snippets

bash
php artisan vendor:publish --tag=filament-gui-panel-builder-config
bash
php artisan filament:clear

        use IracodeCom\FilamentGuiPanelBuilder\GuiPanelBuilderServiceProvider;
        return [
    		...,
      		GuiPanelBuilderServiceProvider::class
	   ];

    

        use IracodeCom\FilamentGuiPanelBuilder\GuiPanelBuilderServiceProvider;
        'providers' => ServiceProvider::defaultProviders()->merge([
			...,
		       GuiPanelBuilderServiceProvider::class
		])->toArray(),
    

        use IracodeCom\FilamentGuiPanelBuilder\GuiPanelBuilderPlugin;
        return $panel
		...
		->plugins([
			GuiPanelBuilderPlugin::make()
		]);