|
|
|
|
@ -344,8 +344,7 @@ Route::group(["namespace" => "Mobile", "prefix" => "mobile"], function () {
|
|
|
|
|
Route::get('other/banner', [\App\Http\Controllers\Mobile\OtherController::class, "banner"]);
|
|
|
|
|
// 公司查询
|
|
|
|
|
Route::get('other/company', [\App\Http\Controllers\Mobile\OtherController::class, "company"]);
|
|
|
|
|
// 公司详情
|
|
|
|
|
Route::get('other/company-detail', [\App\Http\Controllers\Mobile\OtherController::class, "companyDetail"]);
|
|
|
|
|
|
|
|
|
|
// 公司查询
|
|
|
|
|
Route::get('other/company-list', [\App\Http\Controllers\Mobile\OtherController::class, "companyList"]);
|
|
|
|
|
// 通知
|
|
|
|
|
@ -368,6 +367,8 @@ Route::group(["namespace" => "Mobile", "prefix" => "mobile"], function () {
|
|
|
|
|
// 支付回调
|
|
|
|
|
Route::any('course/pay_callback', [\App\Http\Controllers\Mobile\CourseController::class, "payCallback"]);
|
|
|
|
|
Route::group(['middleware' => ['sanctum.jwt:mobile']], function () {
|
|
|
|
|
// 公司详情
|
|
|
|
|
Route::get('other/company-detail', [\App\Http\Controllers\Mobile\OtherController::class, "companyDetail"]);
|
|
|
|
|
// 其他
|
|
|
|
|
Route::post('upload-file', [\App\Http\Controllers\Mobile\UploadController::class, "uploadFile"]);
|
|
|
|
|
// 用户信息
|
|
|
|
|
|