去掉laravel的默认页面

This commit is contained in:
EasyChen 2022-01-23 16:09:37 +08:00
parent caf646ad22
commit 622524c77a
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
APP_NAME=Laravel
APP_NAME=PushDeer
APP_ENV=local
APP_KEY=
APP_DEBUG=true

View File

@ -14,5 +14,5 @@ use Illuminate\Support\Facades\Route;
*/
Route::get('/', function () {
return view('welcome');
return ['PushDeer'=>'On'];
});