I am creating a small website for our internal use in the company, is there any way to disable https? When I create a link list his or any other way. {{ URL::to('diag', $subcategory->id, true) }}
It always brings me to a https page. Since this is internal use we dont need https and the browsers always flag the page.
Thank you
{{ URL::to('diag', $subcategory->id) }} or {{ URL::to('diag', $subcategory->id, 'false) }}
The third parameter is a boolean for secure.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community