There are some free Laracast that covers some of this, you could start there.
newbie wrapping head around conversion to laravel
I am working on a "proof of concept" system to show how we can move from a commercial RAD software to laravel. I have been able to get things working on simple models but relationships and where to put some of the code has me scratching my head.
For example, I have a table of students and different tables we use to track different items about each student. Each of these tables is linked by a foreign key (studentid). Here are the questions.
I am trying to reproduce a "student summary" page which displays important pieces from each of these (8 tables). Each of these summary records will have a detail button (like a master detail)
Student
dispositions
fieldwork
admissions.........
So here is my dilemma/confusion. I have created a separate summary.view for the student have pass the student object. i have tested the relationship to the dispositions table in tinker. Do I put the logic of pulling the summary info into each model controller? How do I pull all that info together into the summary view?
I understand when it's a simple 1-1 but I am really talking about multiple 1-many relationships. Any guidance would be appreciated.
Tony
Please or to participate in this conversation.