Beispiel #1
0
 public function movie_details($id)
 {
     $info = movie::get_info($id);
     $credits = movie::get_credits($id);
     $comments = comments::get_comments($id);
     return view('pages.info', compact(array('info', 'comments', 'credits')));
 }