Files
ntspi-app/app/Containers/Widget/UI/API/Controllers/ClientWidgetSliderController.php
T
2026-03-20 21:47:02 +05:00

19 lines
443 B
PHP
Executable File

<?php
namespace App\Containers\Widget\UI\API\Controllers;
use App\Containers\Widget\Actions\GetSliderBySlugAction;
use App\Ship\Controllers\Controller;
class ClientWidgetSliderController extends Controller
{
public function __construct(
private readonly GetSliderBySlugAction $getSliderBySlugAction
) {}
public function show(string $slug): ?object
{
return $this->getSliderBySlugAction->run($slug);
}
}