Files
vuefilemanager/app/Models/Page.php
T
2021-02-26 17:19:57 +01:00

25 lines
336 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Kyslik\ColumnSortable\Sortable;
class Page extends Model
{
use Sortable;
/**
* Sortable columns
*
* @var string[]
*/
public $sortable = [
'title',
'slug',
'visibility',
];
public $timestamps = false;
}