I was having the same issue. One thing I've noticed that after compose update the html folder appeared under *vendor\illuminate* but not in vendor\laravel\framework\src\Illuminate. Check that destination. Also you may want to check vendor\composer\autoload_classmap.php for newly created HtmlServiceProvider and related aliases. Hope that will help.
You named your alias
'Html' => 'Illuminate\Html\HtmlFacade',
and are trying to access like
{{ HTML::style('/public/css/bootstrap.min.css') }}
either change your alias to HTML or change class call to Html::script()
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community