首次提交 Laravel 專案

This commit is contained in:
2025-05-18 08:52:56 +07:00
commit 5e392ae581
264 changed files with 88756 additions and 0 deletions
Executable
+12
View File
@@ -0,0 +1,12 @@
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\TgController;
Route::get('/', function () {
return view('welcome');
});
Route::any('/{token}/Msg', [TgController::class, 'Msg']);