Laravel 5 Class 'HTML' not found

前端 未结 14 1632
野性不改
野性不改 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:23

    I did the same thing as you did: added laravelcollective in my composer, did composer update, added them in my providers and aliases but the code below did not work:

    {{ HTML::image('img/picture.jpg') }}
    

    However, I have this working for me

    {{ Html::image('img/picture.jpg') }}
    

    I think this is because this issue is case sensitive and that the class HTML vs class Html is being seen as entirely different from one another by this laravel version.

提交回复
热议问题