html - How can I know the namespace of a 'serviceprovider' class in Laravel 5.2? -


i use laravel 5.2. found error message...

fatal error: class 'html' not found (view: d:\websites\htdocs\eloquent\resources\views\nerds\create.blade.php)

to solve problem, use following command...

composer require illuminate/html

and update composer

the path of 'service provider' downloaded ...

vendor > illuminate > html > htmlserviceprovider.php

in app.php file following line not solving problem.

illuminate\html\htmlserviceprovider::class;

what should write instead?

would please help?

add these 2 lines inside aliases in app.php. code should this

'aliases' => [     // other aliases     'form' => illuminate\html\formfacade::class,     'html' => illuminate\html\htmlfacade::class, ] 

Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -