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

前端 未结 3 1777
渐次进展
渐次进展 2021-02-10 09:19

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

<
3条回答
  •  梦如初夏
    2021-02-10 09:40

    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.

提交回复
热议问题