laravelista / comments

Native comments for your Laravel application.
MIT License
744 stars 142 forks source link

error in redirect using ver. 3.1 #163

Open monty2de opened 3 years ago

monty2de commented 3 years ago

whaen i try to create a new comment he try to redirect my to /home i try to change it but sill redirect my to /home

mabasic commented 3 years ago

When the comment is created it tries to redirect you to the previous URL appended with a hash which points the browser to the newly created comment:

return Redirect::to(URL::previous() . '#comment-' . $comment->getKey());