Laravel 5: how to redirect with data to external resource form controller

前端 未结 3 903
小蘑菇
小蘑菇 2021-02-10 09:27

I want to send user to payment gate. Normally it could be made by this form:

<
3条回答
  •  自闭症患者
    2021-02-10 10:00

    You can redirect to an external URL with Laravels's redirect. First import the Redirect to your controller and

    use Illuminate\Support\Facades\Redirect;
    return Redirect::away($redirectUrl)->with(['user_id'=>$user_id]);
    

    would help you to send the request as a post with the needed params.

提交回复
热议问题