Files
ntspi-app/app/Containers/Dashboard/UI/WEB/Controllers/CreateSliderController.php
T
2026-04-07 17:54:26 +05:00

15 lines
296 B
PHP

<?php
namespace App\Containers\Dashboard\UI\WEB\Controllers;
use App\Http\Controllers\Controller;
use Inertia\Inertia;
class CreateSliderController extends Controller
{
public function __invoke(): \Inertia\Response
{
return Inertia::render('Dashboard/Sliders/Create');
}
}