Guest User

Untitled

a guest
Oct 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. return DB::table('topics')->where('tags->tags', ucfirst( $tag ))->get();
  2.  
  3. tag_name | tag_seo_name
  4. --------------------------------
  5. Tutorials | tutorials
  6. About us | about-us
  7.  
  8. return DB::table('topics')
  9. ->where('tags->tags', ucfirst( $tag ))
  10. ->join('tags', what to write here? tags->tags, ucfirst( $tag ), '=', 'tags.tag_seo_name')
  11. ->select('topics.*', 'tags.*')
  12. ->get();
Add Comment
Please, Sign In to add comment