mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-06 02:33:48 +00:00
26 lines
410 B
PHP
26 lines
410 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Kyslik\ColumnSortable\Sortable;
|
|
|
|
class Page extends Model
|
|
{
|
|
use Sortable, HasFactory;
|
|
|
|
/**
|
|
* Sortable columns
|
|
*
|
|
* @var string[]
|
|
*/
|
|
public $sortable = [
|
|
'title',
|
|
'slug',
|
|
'visibility',
|
|
];
|
|
|
|
public $timestamps = false;
|
|
}
|