I have a laravel site and I'm trying to get everything to work on with SSL.
Though it seems that Laravel wants to use http instead.
For example I was using the form
element and the method was automatically sending to http. The same thing using the built in style
, script
links which I changed all to work statically (regular ol' HTML). The last thing which I can't manage to figure out is the pagination (using jscroll).
I have this row:
{!! $plugins->appends(['tag' => $param2, 'search' => $param1 ])->render() !!}
Which prints this:
<ul class="pager">
<li class="disabled"><span>«</span></li>
<li class="jscroll-next-parent" style="display: none;"><a href="http://siteurl.net/pagename/page/?tag=XXX&search=&page=2" rel="next">»</a>
</li>
</ul>
Any idea how I change that to be https? Thanks!