1
0
mirror of https://github.com/devfake/flox.git synced 2024-11-15 22:52:32 +01:00
flox/backend/app/AlternativeTitle.php

42 lines
758 B
PHP
Raw Normal View History

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AlternativeTitle extends Model {
public $timestamps = false;
protected $fillable = [
'title',
'tmdb_id',
'country',
];
/**
* Store all alternative titles for tv shows and movies.
*
* @param $titles
* @param $tmdbId
*/
public function store($titles, $tmdbId)
{
foreach($titles as $title) {
$this->firstOrCreate([
'title' => $title->title,
'tmdb_id' => $tmdbId,
'country' => $title->iso_3166_1,
]);
}
}
/*
* Scopes
*/
public function scopeFindByTmdbId($query, $tmdbId)
{
return $query->where('tmdb_id', $tmdbId);
}
}