I'm trying to include a simple css and js file into my index blade template file. In locahost works fine using the information in this link: Laravel include css, js using ssl
But on heroku is not working, i'm getting the Mixed Content error because of the http request for the css and js files.
How can i use https for linking css and js in my blade template?
Ps: {{HTML::style('css/site.css', array(), true) }}
does not work unfortunately