mirror of
https://github.com/devfake/flox.git
synced 2024-11-15 14:42:31 +01:00
25 lines
408 B
PHP
25 lines
408 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',
|
||
|
'alternative_title',
|
||
|
'poster',
|
||
|
'rating',
|
||
|
'released',
|
||
|
'created_at',
|
||
|
];
|
||
|
}
|