grid-sortable icon indicating copy to clipboard operation
grid-sortable copied to clipboard

看起来是不是手册少写了些代码,在form里面要保存order字段?

Open ghost opened this issue 6 years ago • 3 comments

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

use Spatie\EloquentSortable\Sortable;
use Spatie\EloquentSortable\SortableTrait;

class Product extends Model implements Sortable
{
    use SoftDeletes,SortableTrait;

    protected $table = 'product';

    public $sortable = [
        'order_column_name' => 'order',
        'sort_when_creating' => true,
    ];

}

ghost avatar Oct 31 '19 16:10 ghost

排序没成功,数据库字段值没变

ghost avatar Oct 31 '19 16:10 ghost

排序没成功,数据库字段值没变

我开头也没成功,研究了下发现因为我的order字段值全部是默认0,我试着全部改成不同的值,就开始生效了

kk8686 avatar Jul 28 '20 15:07 kk8686

@kk8686 感謝測試成功

joe94113 avatar Aug 03 '22 06:08 joe94113