added tv page, small changes and fix bugs

This commit is contained in:
F4ilji
2025-05-21 14:00:04 +05:00
parent 10ec9a90c7
commit 791a56ca4d
12 changed files with 327 additions and 102 deletions
@@ -0,0 +1,14 @@
<?php
namespace App\Containers\Widget\UI\WEB\Controllers;
use App\Ship\Controllers\Controller;
use App\Ship\Requests\Request;
class TvController extends Controller
{
public function index()
{
return inertia()->render('Client/Tv/Index');
}
}