Laravel 5 Class 'HTML' not found

前端 未结 14 1600
野性不改
野性不改 2020-12-10 01:03

I am attempting to use Laravel 5 but my {{ HTML::style(\'style.css\') }} No longer works.

I have updated composer.json to include \"illuminate/ht

14条回答
  •  天命终不由人
    2020-12-10 01:31

    1. Add to composer.json:
      a) "illuminate/html": "5.*"
      b) Run Command:- composer update

    2. Add to the app.php providers array:
      a) 'Illuminate\Html\HtmlServiceProvider',

    3. Add to the app.php aliases array:
      a) 'Html' => 'Illuminate\Html\HtmlFacade',
      b) 'Form' => 'Illuminate\Html\FormFacade',

    4. Done

提交回复
热议问题