Guest User

Untitled

a guest
Nov 15th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public function country(){
  2. return $this->hasOne('AppCountries', 'country', 'country');
  3. }
  4.  
  5. Users::orderBy('id', 'desc')->country()->get();
  6.  
  7. Users(id, name, country_id)
  8.  
  9. public function country()
  10. {
  11. return $this->hasOne('AppCountries', 'country', 'country');
  12. }
  13.  
  14. Users::orderBy('id', 'desc')->with('country')->get();
Add Comment
Please, Sign In to add comment