35 lines
636 B
PHP
35 lines
636 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Watched extends Model
|
|
{
|
|
public $table = 'watched';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $fillable = ['episode_id', 'user_id'];
|
|
|
|
/**
|
|
* Get the Episode.
|
|
*/
|
|
public function episode(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Episode::class, 'episode_id');
|
|
}
|
|
|
|
/**
|
|
* Get the User.
|
|
*/
|
|
public function user(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'user_id');
|
|
}
|
|
}
|