Files
mtdb_movie/app/Actions/Titles/LoadSeasonEpisodeNumbers.php
T
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

19 lines
430 B
PHP
Executable File

<?php
namespace App\Actions\Titles;
use Illuminate\Support\Facades\DB;
class LoadSeasonEpisodeNumbers
{
public function execute(int $titleId, int $seasonNumber): array
{
return DB::table('episodes')
->where('title_id', $titleId)
->where('season_number', $seasonNumber)
->orderBy('episode_number', 'asc')
->pluck('episode_number')
->toArray();
}
}