Advertisement
Guest User

Untitled

a guest
Dec 7th, 2014
273
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 getShowSinglePost($slug)
  2. {
  3. $posts = Post::where('slug', '=', $slug)->with('categories')->with('comments')->get();
  4. if(count($posts) < 1){
  5. App::abort(404);
  6. }
  7. $this->layout->content =View::make('posts.single')
  8. ->with('posts', $posts);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement