Class 'input' not found
發表於 : 2016-09-09 09:16:06
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,
Or You can import Input facade directly as required,
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,
代碼: 選擇全部
use Illuminate\Support\Facades\Input;