Код: Выделить всё
namespace App;
use Illuminate\Database\Eloquent\Model;
class User extends Model
{
protected static function boot() {
parent::boot();
static::creating(function ($user) {
});
}
protected static function booted() {
parent::booted();
static::creating(function ($user) {
});
}
}
Подробнее здесь: https://stackoverflow.com/questions/629 ... in-laravel
Мобильная версия