1 頁 (共 1 頁)

Laravel Request::all() Should Not Be Called Statically

發表於 : 2019-06-27 14:26:44
yehlu
https://stackoverflow.com/questions/285 ... statically

188

The error message is due to the call not going through the Request facade.

Change

代碼: 選擇全部

use Illuminate\Http\Request;
To

代碼: 選擇全部

use Request;