php - Laravel 5 Class 'Illuminate\Support\Facades\FormFacade' not found -
ok, driving me mad. i'm trying include forms functionalities formfacade laravel 5, keep getting error:
class 'illuminate\support\facades\formfacade' not found
i'll write down have done:
- after laravel 5 installation, added formfacade laravel.
updated app.php file following lines:
providers: 'illuminate\html\htmlserviceprovider', aliases: 'form' => 'illuminate\support\facades\formfacade', 'html' => 'illuminate\support\facades\htmlfacade',
then, checked composer.json file:
"require": { "laravel/framework": "5.0.*", "illuminate/html": "~5.0" },
did composer update
- checked if downloaded files
all of done, still cannot find whats going wrong. searched nothing seems work.
search effort:
laracasts tutorial
class 'illuminate\html\htmlserviceprovider' not found laravel 5
- http://tutsnare.com/class-form-or-html-not-found-in-laravel-5/
still no luck. have missed something?
ps: i'm running on windows.
those aliases wrong. should use facades illuminate\html
:
'html' => 'illuminate\html\htmlfacade', 'form' => 'illuminate\html\formfacade',