Answer the question
In order to leave comments, you need to log in
Why can't I call the Parent method on a Laravel model?
There is such a method in the model:
class User extends Eloquent {
....
public function save() {
parent::save();
}
...
}
Answer the question
In order to leave comments, you need to log in
Попробуйте так
public function save(array $options = array()) {
return parent::save($options);
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question