mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
41 lines
588 B
PHP
41 lines
588 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Content extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'content';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $timestamps = false;
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'title',
|
|
'url',
|
|
'body',
|
|
'metadescription',
|
|
'metakeywords',
|
|
'contenttype',
|
|
'showinmenu',
|
|
'status',
|
|
'ordinal',
|
|
'role',
|
|
];
|
|
}
|