1 頁 (共 1 頁)

Class 'input' not found

發表於 : 2016-09-09 09:16:06
yehlu
http://stackoverflow.com/questions/316 ... not-found

It is Input and not input. This commit removed Input facade definition from config/app.php hence you have to manually add that in to aliases array as below,

代碼: 選擇全部

'Input' => Illuminate\Support\Facades\Input::class,
Or You can import Input facade directly as required,

代碼: 選擇全部

use Illuminate\Support\Facades\Input;