How to configure url or base url in Laravel4.2 for secures protocol https without set manual in html builder.
{{ HTML::style('front_assets/plugins/bootstrap/css/bootstrap.min.css') }}
{{ HTML::style('front_assets/css/style.css')}}
<!-- CSS Implementing Plugins -->
{{ HTML::style('front_assets/plugins/font-awesome/css/font-awesome.min.css') }}
{{ HTML::style('front_assets/plugins/sky-forms/version-2.0.1/css/custom-sky-forms.css') }}
{{ HTML::style('front_assets/plugins/scrollbar/src/perfect-scrollbar.css') }}
{{ HTML::style('front_assets/plugins/fullcalendar/fullcalendar.css') }}
{{ HTML::style('front_assets/plugins/fullcalendar/fullcalendar.print.css',array('media' => 'print')) }}
It's not clear what you need. If you page URL is in https scheme, every asset URL on that page will be generated in https automatically, but if you need only certain types of assets to be linked by https on page requested by http, you have to implement your own custom
HtmlBuilderthat overrides helper methods you need to be forced to generate https URLsThen in
app.phpconfig you should replace defaultHtmlServiceProviderwith your customMyAppHtmlServiceProvider.