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

前端 未结 3 1778
渐次进展
渐次进展 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:56

    I think this is what you are looking for:

    call your function controller:

    public function redirectPOST(){
    //params
    $USERNAME='username';
    return view('your vie', compact('USERNAME'));}
    

    then in your view:

    
    
      
     
     
     
     
     
     
    

提交回复
热议问题