From 941a4e78e1d570ccc25743bfe96d029e5622fd0c Mon Sep 17 00:00:00 2001 From: edmondlang Date: Sat, 1 Feb 2025 01:08:16 +0700 Subject: [PATCH] add a test route to trigger re deploy --- routes/web.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/routes/web.php b/routes/web.php index 80725e55..d8518e07 100644 --- a/routes/web.php +++ b/routes/web.php @@ -1339,3 +1339,8 @@ Route::get('/site.webmanifest', function () { $contents = File::get($filePath); return response($contents, 200)->header('Content-Type', 'application/manifest+json'); }); + + +Route::get('/test-test', function () { + dd('test-test'); +});