Laravel 5 issues with linking css assets
问题 am currently trying to port my laravel 4 application to laravel 5 . i have added "illuminate/html": "5.*" to composer and also the facade and service providers to config. i was using the following syntax to link to my css files {{ HTML::style('css/bootstrap.min.css') }} {{ HTML::style('css/style.css') }} but in laravel 5 , my views output is all broken , with the page displaying like the below screenshot . what could i be missing here ? is there any changes to the blade syntax in laravel 5 ?