grid-sortable
grid-sortable copied to clipboard
看起来是不是手册少写了些代码,在form里面要保存order字段?
<?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,
];
}
排序没成功,数据库字段值没变
排序没成功,数据库字段值没变
我开头也没成功,研究了下发现因为我的order字段值全部是默认0,我试着全部改成不同的值,就开始生效了
@kk8686 感謝測試成功