Class 'input' not found

http://laravel.com/

http://kejyun.github.io/Laravel-4-Docum ... roduction/
回覆文章
yehlu
Site Admin
文章: 3244
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

Class 'input' not found

文章 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;
回覆文章

回到「laravel」