23 lines
492 B
PHP
Executable File
23 lines
492 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Actions\Titles\Retrieve\PaginateTitleSeasons;
|
|
use App\Models\Title;
|
|
use Common\Core\BaseController;
|
|
|
|
class TitleSeasonsController extends BaseController
|
|
{
|
|
public function __invoke(Title $title)
|
|
{
|
|
$this->authorize('show', $title);
|
|
|
|
$pagination = app(PaginateTitleSeasons::class)->execute(
|
|
$title,
|
|
request()->all(),
|
|
);
|
|
|
|
return $this->success(['pagination' => $pagination]);
|
|
}
|
|
}
|