Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. |id|first|last|..........
  2. |1 |.....................
  3. |2 |.....................
  4.  
  5. |id|roll_id|member_id|status|
  6. |1 |1 |1 |P |
  7. |2 |1 |2 |V |
  8. |3 |2 |1 |A |
  9. |4 |2 |2 |C |
  10.  
  11. |id|roll_date |roll_year|
  12. |1 |2019-03-01|2019 |
  13. |2 |2019-03-02|2019 |
  14.  
  15. public function roll()
  16. {
  17. return $this->hasMany('AppRoll');
  18. }
  19.  
  20. public function rollmapping()
  21. {
  22. return $this->hasOne('AppRollmapping', 'id','roll_id');
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement