laravel 5 - After updating composer the illuminate/HTML package got uninstalled , -


i updated composer while trying install packages , composer uninstalled else , installed of packages,

now when doing

php artisan serve  

its saying illuminate\html\htmlserviceprovider not found .

my composer looks

"require": {         "php": ">=5.5.9",         "laravel/framework": "5.1.*",         "illuminate/html": "~5.0",          "bestmomo/scafold": "dev-master",         "guzzlehttp/guzzle": "~5.3|~6.0"     }, 

before website running fine .

can 1 me out , tried reinstall html packages says nothing downloaded

thanks

check if have line , if not add app.php file in config in service providers

illuminate\html\htmlserviceprovider::class, 

and 1 aliases

'html'=> 'illuminate\html\htmlfacade', 

Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -