You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
549 B
PHP
16 lines
549 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\api\mobile\CheckUpdateController;
|
|
use App\Http\Controllers\api\mobile\TvController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::controller(CheckUpdateController::class)->group(function() {
|
|
Route::post('/check-update/video-update/latest', 'videoUpdateLatest');
|
|
Route::post('/check-update/apk-update/latest', 'apkUpdateLatest');
|
|
});
|
|
|
|
Route::controller(TvController::class)->group(function() {
|
|
Route::post('/tv/new-request', 'newRequest');
|
|
Route::post('/tv/update-condition', 'updateCondition');
|
|
});
|
|
?>
|