Guest User

Untitled

a guest
Apr 29th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $usuarios = Usuario::with('nivel')->where(['status' => 1])->get()->toArray();
  2.  
  3. // Resultado:
  4. [
  5. 'usuarios' => [
  6. 0 => [
  7. 'id' => 1,
  8. 'nome' => 'Wallace',
  9. 'nivel_id' => 4,
  10. 'nivel' => [
  11. 'id' => 4,
  12. 'nome' => 'Produção'
  13. ]
  14.  
  15.  
  16. ],
  17. 1 => [
  18. 'id' => 2,
  19. 'nome' => 'Wayne',
  20. 'nivel_id' => 5,
  21. 'nivel' => [
  22. 'id' => 5,
  23. 'nome' => 'Recepção'
  24. ]
  25.  
  26.  
  27. ]
  28. ]
  29. ];
Add Comment
Please, Sign In to add comment