Turns out I needed to instantiate a new model...
$comment = new Comments;
$comment->name = Input::get('name');
$comment->comments = Input::get('comments');
$comment->save();
Any particular reason for using GET? Database operations should be PUT, POST or DELETE. Also, you're not protected against CSRF.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community