This commit is contained in:
2025-09-18 15:31:27 +02:00
commit 2abba0c2b7
406 changed files with 31879 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
class PlaylistEpisode extends Model
{
/**
* Indicates If The Model Should Be Timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = [
'playlist_id',
'episode_id',
'position',
];
/**
* Belongs To A Episode.
*/
public function episode(): BelongsTo
{
return $this->belongsTo(Episode::class);
}
/**
* Belongs To A Playlist.
*/
public function playlist(): BelongsTo
{
return $this->belongsTo(Playlist::class);
}
}