Files
hstream/app/Models/PopularMonthly.php
2026-04-18 14:18:52 +02:00

26 lines
430 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PopularMonthly extends Model
{
public $table = 'popular_monthly';
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = ['episode_id'];
/**
* Get the Episode.
*/
public function episode()
{
return $this->belongsTo(Episode::class, 'episode_id');
}
}