20 lines
354 B
PHP
Executable File
20 lines
354 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Containers\Widget\UI\WEB\Controllers;
|
|
|
|
use App\Ship\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
|
|
class TvController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return inertia()->render('Client/Tv/Index');
|
|
}
|
|
|
|
public function time()
|
|
{
|
|
return inertia()->render('Client/Tv/Time');
|
|
}
|
|
}
|