Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Create a main model, say BaseModel.php
In it, override the Create method
public static function create(array $attributes = [])
{
// тут проводите свою валидацию, и возвращайте false если не прошли
$model = new static($attributes);
$model->save();
return $model;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question