You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?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,
];
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: