Skip to content

Instantly share code, notes, and snippets.

@mrailton
Created August 29, 2014 18:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrailton/dadd6584ef5c0a3e7b26 to your computer and use it in GitHub Desktop.
Save mrailton/dadd6584ef5c0a3e7b26 to your computer and use it in GitHub Desktop.
<?php
/**
* Display the specified blog post.
*/
public function show($slug)
{
$post = Post::where('slug', $slug)->first();
return View::make('blog.post', compact('post'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment