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
Post a Comment