PHP code example of antwerpes / filament-nested-set-order

1. Go to this page and download the library: Download antwerpes/filament-nested-set-order 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/ */

    

antwerpes / filament-nested-set-order example snippets


class Category extends Model
{
    use NodeTrait;
    use Orderable;
}

use Antwerpes\FilamentNestedSetOrder\NestedSetOrderActions;

class CategoryResource extends Resource
{
    public static function table(Table $table): Table
    {
        return $table->prependActions(NestedSetOrderActions::make());
    }
    
    public static function getEloquentQuery(): Builder
    {
        return parent::getEloquentQuery()->withDepth()->defaultOrder();
    }
}

return [
    'cache_enabled' => true,
];