Laravel 5 Class 'HTML' not found

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

    run this cmd to laravel installed folder

    composer require "laravelcollective/html":"^5.4.0"
    

    and use with public

    {!! Html::style( asset('public/css/artist.css')) !!}
    

提交回复
热议问题