Laravel မှာ asset ကို သုံးသည့် အခါမှာ အဓိက ပြဿနာက https ဆိုရင် အကုန်အလုပ်မလုပ်တော့တာပဲ။ ဒါကြောင့် https ကို support ဖြစ်အောင် အောက်ကလို ပြင်လို့ရပါတယ်။

ပထမဆုံး .env မှာ

HTTPS = true

ဆိုပြီး ထည့်လိုက်ပါ။

app/Providers/AppServiceProvider.php က boot မှာ URL::forceScheme('https'); ကို ထည့်ဖို့ လိုပါတယ်။

public function boot() {
    if (env('HTTPS')) {
        URL::forceScheme('https');
    }
}

ဒါဆိုရင် .env မှာ HTTPS ကို true ဖြစ်ရင် https ကို သုံးပြီးတော့ မဟုတ်ခဲ့ရင်တော့ http ကို ပြောင်းပြီး အသုံးပြုပါလိမ့်မယ်။

2 responses to “https with laravel”

  1. အရင်ဆုံး မဆိုင်တဲ့ post အောက်မှာ ment မိလို့ တောင်းပန်ပါရစေ အကို…
    အကိုအရင်ဆုံး မြင်စေချင်လို့ပါ…

    အကူအညီလေးတစ်ခုတောင်းချင်လို့ပါ…

    myan typing ebooks တော်တော်များများက win font သုံးတာများတယ်အကို…
    kindle ထဲ့ထည့်ဖို့ အတွက် အဆင်မပြေလို့ပါ အကို…
    အကို ရေးထားတဲ့ epub font ပြောင်းတဲ့ အထဲမှာ… zawgyi … unicode. အပြင် win. ကိုပါ support လုပ်ပေးလို့ မရဖူးလား အကို…
    ကျေးဇူးပြုပြီး ကူညီပေးပါအုံး….

    1. Win is not easy because we cannot know which one is English and Myanmar. When convert , all text including will be used as Myanmar. Result may be incorrect.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.