Posts by Thiago Valente • 101 points
1 post
-
0
votes1
answer99
viewsA: Laravel - Query with 3 tables (1-N)
To search the array with all portions of a receipt, just use the with For example in search of a specific receipt public function show($id) { $recebtos = Recebto::with('parcelas') ->find($id); }…