|
@@ -4,14 +4,24 @@ namespace App\Models;
|
|
|
|
|
|
use Dcat\Admin\Traits\HasDateTimeFormatter;
|
|
|
|
|
|
+use Dcat\Admin\Traits\ModelTree;
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
+use Spatie\EloquentSortable\Sortable;
|
|
|
+use Spatie\EloquentSortable\SortableTrait;
|
|
|
|
|
|
-class BaseProduct extends Model
|
|
|
+class BaseProduct extends Model implements Sortable
|
|
|
{
|
|
|
- use HasDateTimeFormatter;
|
|
|
+ use HasDateTimeFormatter;
|
|
|
+ use SortableTrait;
|
|
|
+
|
|
|
protected $table = 'base_product';
|
|
|
|
|
|
- protected $fillable = ['id', 'title', 'keywords', 'description', 'sku', 'category_id', 'issuance_date', 'order', 'enabled', 'content', 'parameters', 'created_at', 'updated_at'];
|
|
|
+ // 可选:你可以在这里自定义排序配置
|
|
|
+ public $sortable = [
|
|
|
+ 'order_column_name' => 'order', // 排序字段
|
|
|
+ 'sort_when_creating' => false, // 创建时自动排序
|
|
|
+ ];
|
|
|
+
|
|
|
protected $casts = [
|
|
|
'created_at' => 'datetime:Y-m-d H:i:s',
|
|
|
'updated_at' => 'datetime:Y-m-d H:i:s',
|