如何从laravel 5.4或5.5的api响应中获取视图

时间:2017-09-18 14:15:55

标签: laravel-5.4

示例

类ProductController扩展Controller {     公共功能秀($ id)     {         return new ProductResource(Product :: find($ id));     } }

路由:: get(' / products / {id}',' ProductController @ show');

现在我如何获得路线产品/ id

1 个答案:

答案 0 :(得分:0)

在这种情况下,您需要添加一些要求:

在api.php路线上添加此行

路线:

Route::get('api/products/{id}', 'ProductController@show');

通过POSTMAN | cURL:http://example.com/api/products/1