Laravel 5.4: Class 'App\Http\Controllers\Response' not found error

后端 未结 1 1527
挽巷
挽巷 2021-01-04 09:01

I am following the Laracast\'s API tutorial and trying to create an ApiController that all the other controllers extend. ApiController is responsib

相关标签:
1条回答
  • 2021-01-04 10:03

    Since it's a facade, add this:

    use Response;
    

    Or use full namespace:

    return \Response::json(...);
    

    Or just use helper:

    return response()->json(...);
    
    0 讨论(0)
提交回复
热议问题