Решение.
в 
routes.php:
Route::post('addcomment/{id}', array(
        'as' => 'comment',
        'uses' => 'CommentController@add'
    ));
в 
%filename%.blade.php:
{{ Form::model($post, array('action' => array('CommentController@add', $post['id']))) }}
// Ваши данные
{{ Form::close() }}
в 
CommentController.php:
public function add($id){
			$data = Input::all();
			$new = $id;
			$data['post_id'] = $new;
			$comment = Comment::add($data);
}
и наконец, в
 Comment.php:
$comment = Comment::create([
					//ваши данные
					//и id:
					'post_id' => $data['post_id']
				]);