Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $articles = Article::orderBy('id','DESC')->paginate(5);
  2. $articles->each(function($articles){
  3. $articles->categorie;
  4. $articles->user;
  5. });
  6. dd($articles);
  7.  
  8. $articles = Article::find(2);
  9. $articles->categorie;
  10. $articles->user;
  11. dd($articles);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement