示例#1
0
 public function addCommentAction(Movies $movie)
 {
     //        dd($movie);
     $movie->addCommentBy($this->auth, $this->request->getPost());
     return $this->redirectByRoute(['for' => 'movies.show', 'movie' => $movie->id]);
 }