示例#1
0
 /**
  * GET /posts/post-slug
  * Get a single post.
  *
  * @param  \NeonTsunami\Post  $post
  * @return \Illuminate\Http\Response
  */
 public function show(Post $post)
 {
     $post->load('series', 'tags', 'user');
     $post->increment('views');
     return view('posts.show', compact('post'))->withTitle($post->title)->withDescription(str_limit($post->content, 160));
 }