Posts by Rafael Christ • 61 points
4 posts
-
1
votes2
answers887
viewsA: How to receive a json in Controller and pass to Object array
found the solution, I came to share with you. Thank you for your help. Controller public function exportar() { $json = Request::input('json'); $ids = array(); for ($i = 0; $i < count($json);…
-
3
votes2
answers887
viewsQ: How to receive a json in Controller and pass to Object array
I am having the following problem, I need to take the Controller filtered objects to export to report. I’m sending by json using Ajax, but I don’t know if object is being sent to Controller,gave a…
-
1
votes1
answer54
viewsA: How to use "request" in the following situation
the solution was as follows 'conta' => "required|max:255|unique:tb_contas_bancarias,conta,{$this->id},id,deleted_at,NULL", answer was on this link…
-
1
votes1
answer54
viewsQ: How to use "request" in the following situation
I have two methods in Controller that has the function of saving a new check and another that updates the check with edit. The two methods go through Request before entering into the bank, but…