php -S localhost:8000 -t public
指定路由到控制器方法处理 $router->get('/hello', 'HelloController@index');
return response()->json(['name' => 'Abigail', 'state' => 'CA']);
app('request')->getRequestUri();
你可以在服务容器外使用 make 方法来获得一个实例化的类
make
return View::make('profile'); return view('profile');
Last updated 3 years ago