Lae/routes/public.php

12 lines
402 B
PHP
Raw Normal View History

2023-01-14 21:37:25 +00:00
<?php
/**
* 公共路由,不需要登录。这里存放 异步回调 请求路由。
*/
use App\Http\Controllers\Public\RealNameController;
use Illuminate\Support\Facades\Route;
Route::post('real_name/notify', [RealNameController::class, 'verify'])->name('real-name.notify');
Route::match(['post', 'get'], 'real_name/process', [RealNameController::class, 'process'])->name('real-name.process');