いろんなやり方があるけど、たぶんこれが一番シンプル
app/Providers/AppServiceProvider.php
public function boot()
{
if ($this->app->environment() === 'production') {
\URL::forceScheme('https');
}
}
Go to list of users who liked
More than 5 years have passed since last update.
いろんなやり方があるけど、たぶんこれが一番シンプル
public function boot()
{
if ($this->app->environment() === 'production') {
\URL::forceScheme('https');
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked