You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
413 B
17 lines
413 B
<?php |
|
|
|
namespace Spatie\EloquentSortable\Test; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
use Illuminate\Database\Eloquent\SoftDeletes; |
|
use Spatie\EloquentSortable\Sortable; |
|
use Spatie\EloquentSortable\SortableTrait; |
|
|
|
class DummyWithSoftDeletes extends Model implements Sortable |
|
{ |
|
use SoftDeletes, SortableTrait; |
|
|
|
protected $table = 'dummies'; |
|
protected $guarded = []; |
|
public $timestamps = false; |
|
}
|
|
|