PHP code example of jeffersongoncalves / filament-pixel
1. Go to this page and download the library: Download jeffersongoncalves/filament-pixel 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/ */
jeffersongoncalves / filament-pixel example snippets
use JeffersonGoncalves\Filament\Pixel\PixelPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
PixelPlugin::make(),
]);
}
PixelPlugin::make()
->settingsPage(false),
bash
php artisan vendor:publish --tag=pixel-settings-migrations
php artisan migrate