Laravel 5.1: Class html does not exist

前端 未结 9 2086
一个人的身影
一个人的身影 2020-12-10 04:38

I am upgrading from 4.2 directly to 5.1 and run into problems with the Html and Form classes.

I followed the upgrade notes, and did

  • add \"laravelcollec
9条回答
  •  青春惊慌失措
    2020-12-10 05:08

    Please change your blade file from this

    {{ HTML::style('css/bootstrap.min.css') }}
    

    to

    {{ Html::style('css/bootstrap.min.css') }}
    

    It's working.

提交回复
热议问题