PHP code example of weiwait / dcat-orderable

1. Go to this page and download the library: Download weiwait/dcat-orderable 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/ */

    

weiwait / dcat-orderable example snippets


// 升序
$grid->model()->orderBy('order');
$grid->column('order')->sequencable();
class Model implements \Spatie\EloquentSortable\Sortable
{
    use \Weiwait\DcatOrderable\SortableTrait

    protected array $sortable = [
        'order_column_name' => 'order',
        // alias: 'column' => 'order'
        'sort_when_creating' => true, // default
        // alias: 'sortable' => true
    ]
}
// 降序
$grid->model()->orderByDesc('order');
$grid->column('order')->sequencable();

class Model implements \Spatie\EloquentSortable\Sortable
{
    use \Weiwait\DcatOrderable\SortableTrait
    
    protected array $sortable = [
        'order_column_name' => 'order',
        // alias: 'column' => 'order'
        'sort_when_creating' => true, // default
        // alias: 'sortable' => true
        'direction' => 'desc' // when using descend method is 
shell
  php artisan admin:ide-helper