I am attempting to use Laravel 5 but my {{ HTML::style(\'style.css\') }} No longer works.
{{ HTML::style(\'style.css\') }}
I have updated composer.json to include \"illuminate/ht
\"illuminate/ht
Add to composer.json: a) "illuminate/html": "5.*" b) Run Command:- composer update
Add to the app.php providers array: a) 'Illuminate\Html\HtmlServiceProvider',
Add to the app.php aliases array: a) 'Html' => 'Illuminate\Html\HtmlFacade', b) 'Form' => 'Illuminate\Html\FormFacade',
Done