Laravel is there a way to add values to a request array

前端 未结 13 2124
闹比i
闹比i 2020-12-07 15:24

I come across a situation in Laravel while calling a store() or update() method with Request parameter to add some additional value to the request before calling Eloquent fu

相关标签:
13条回答
  • 2020-12-07 16:08

    I used this code to add something to my request.

    $req->query->add(['key'=>'variable']);
    $req->request->add(['key'=>'variable']);
    
    0 讨论(0)
提交回复
热议问题