Redirect to external URL with return in laravel

后端 未结 8 1410
野的像风
野的像风 2021-02-01 13:41

I am trying to send one time password to a user using SMS INDIA HUB API. For that purpose I need to redirect to a URL format:

http://cloud.smsindiahub.in/vendorsms/pushs

8条回答
  •  有刺的猬
    2021-02-01 14:07

    You should be able to redirect to the url like this

    return Redirect::to($url);
    

    You can read about Redirects in the Laravel docs here.

提交回复
热议问题