Posts by Lucas Siqueira • 41 points
1 post
-
4
votes2
answers397
viewsA: How do I search with Query Builder in Laravel?
When loading the reports, use Eager Loading, which will also load records from other related tables: $laudos = Laudo::with('paciente.medico')->get(); Source:…