Add time method to TvController and update routes to include time endpoint for TV functionality.

This commit is contained in:
F4ilji
2025-09-28 12:36:38 +05:00
parent 72af09d93d
commit 4146880905
3 changed files with 195 additions and 8 deletions
@@ -11,4 +11,9 @@ class TvController extends Controller
{
return inertia()->render('Client/Tv/Index');
}
public function time()
{
return inertia()->render('Client/Tv/Time');
}
}