модели User создавалась сразу автоматом объект моей модели Profile?
User - это из RainLab.User? User::extend(function(User $model) { $model->hasOne['profile'] = Profile::class; $model->created(function (User $model) { $profile = new Profile; $profile->user = $model; $profile->save(); }); });
Обсуждают сегодня