-
Notifications
You must be signed in to change notification settings - Fork 18
Open

Description
<?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,
];
}
Metadata
Metadata
Assignees
Labels
No labels