public function blogbyuser($id)
 {
     $blog = Blog::where('id', '=', $id)->first();
     $comment = $blog->comments;
     return view::make('blogbyuser')->with('blog', $blog)->with('comment', $comment);
 }