initial commit
This commit is contained in:
commit
d96b74e6c1
88 changed files with 15238 additions and 0 deletions
25
app/Models/Movie.php
Normal file
25
app/Models/Movie.php
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @method static self create(array $attributes)
|
||||
*/
|
||||
class Movie extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'title',
|
||||
'imdb_id',
|
||||
'year',
|
||||
'director',
|
||||
'actors',
|
||||
'plot',
|
||||
'genre',
|
||||
'mpaa_rating',
|
||||
'critic_scores',
|
||||
'poster',
|
||||
'added_by',
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue