I have a shared hosting with OVH(France) and i have the \"Let\'s Encrypt\" certificate for my domain.
however, i looked everywhere for redirecting all requests from HTTP
Without modify the .htaccess file, you can force the https protocol in your Laravel application adding:
function boot() { URL::forceScheme('https'); ... your code }
In your AppServiceProvider.php.
AppServiceProvider.php