PHP code example of statikbe / laravel-filament-flexible-blocks-asset-manager

1. Go to this page and download the library: Download statikbe/laravel-filament-flexible-blocks-asset-manager 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/ */

    

statikbe / laravel-filament-flexible-blocks-asset-manager example snippets


public function panel(Panel $panel): Panel
{
    return $panel
        ->default()
        //...
        ->plugins([
            SpatieLaravelTranslatablePlugin::make()
                ->defaultLocales(['nl']),
            //...
            FilamentFlexibleBlocksAssetManagerPlugin::make()
        ]);
}

return [
    //...
     
    'call_to_action_models' => [
        [
            'model' => \Statikbe\FilamentFlexibleBlocksAssetManager\Models\Asset::class,
            'call_to_action_type' => \Statikbe\FilamentFlexibleBlocksAssetManager\Filament\Form\Fields\Blocks\Type\AssetCallToActionType::class,
        ],
        //...
        //\App\Models\TranslatablePage::class,
    ],
        
    //...
]
bash
php artisan vendor:publish --tag="filament-flexible-blocks-asset-manager-migrations"
php artisan migrate
bash
php artisan vendor:publish --tag="filament-flexible-blocks-asset-manager-config"
bash
php artisan vendor:publish --tag="filament-flexible-blocks-asset-manager-translations"