mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
40 lines
597 B
PHP
40 lines
597 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class GamesInfo extends Model
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $table = 'gamesinfo';
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
protected $dateFormat = false;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'id',
|
|
'title',
|
|
'asin',
|
|
'url',
|
|
'publisher',
|
|
'genres_id',
|
|
'esrb',
|
|
'releasedate',
|
|
'review',
|
|
'cover',
|
|
'backdrop',
|
|
'trailer',
|
|
'classused',
|
|
'created_at',
|
|
'updated_at',
|
|
];
|
|
}
|