Non-static method Illuminate\Http\Request::all() should not be called statically

Share:
This issue was generated when we are calling a non-satic method of Illuminate\Http\Request class , To resolve the issue, Please use the FACADE rather than Illuminate\Http\Request. Import it at the top and use Illuminate\Http\Request code
use Request;


No comments