I am working on a project that requires a secure connection.
I can set the route, uri, asset to use 'https' via:
Route::get('order/details/{id}', ['uses' => ' OrderController@details ', 'as' => 'order.details', 'https']); url($language.'/index', [], true) asset('css/bootstrap.min.css', true)
But setting parameters all the time seems tedious.
Is there a way to get all routes to generate HTTPS links?
source share