PHP:
public function commentDetails($slug){
$comments = Cache::remember('comments.'.$slug, function($slug) use($slug) {
return Comment::where('slug',$slug)->first();
});
return view('frontend.comments.comment-details',['comment'=>$comment]);
}