摘要: Route::get("/hello",function(){ return "hello world"; }); //匹配所有请求 Route::any("/hello1",function(){ return "hello world1"; }); //匹配两种请求方式 Route::match 阅读全文
posted @ 2021-12-11 23:11 动力起点 阅读(518) 评论(0) 推荐(0)
摘要: 1.创建laravel项目:composer create-project --prefer-dist laravel/laravel 项目名 2.启动项目:php artisan serve 阅读全文
posted @ 2021-12-11 22:18 动力起点 阅读(86) 评论(0) 推荐(0)