PHP code example of infinityxtech / filament-unlayer

1. Go to this page and download the library: Download infinityxtech/filament-unlayer 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/ */

    

infinityxtech / filament-unlayer example snippets


protected $casts = [
   'content' => 'array',
];

Unlayer::make('content')->

SelectTemplate::make('template'),
Unlayer::make('content')->

SelectTemplate::make('template')
    ->afterStateUpdated(fn (string $operation, $state, Forms\Set $set)
        => $set('description', InfinityXTech\FilamentUnlayer\Services\GetTemplates::find($state))
    ),
Unlayer::make('description')->

Unlayer::make('description')
    ->additionalOptions([
        'option' => 'value'
    ])
bash
php artisan vendor:publish --tag="filament-unlayer-config"
bash
php artisan vendor:publish --tag="filament-unlayer-views"