mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 06:32:34 +01:00
28 lines
457 B
PHP
28 lines
457 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Laravel\Scout\Searchable;
|
|
|
|
class Item extends Model {
|
|
|
|
// Uncomment this if you are using Laravel Scout.
|
|
//use Searchable;
|
|
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = [
|
|
'tmdb_id',
|
|
'title',
|
|
'original_title',
|
|
'poster',
|
|
'media_type',
|
|
'tv_data',
|
|
'rating',
|
|
'released',
|
|
'created_at',
|
|
'genre',
|
|
];
|
|
}
|