将[title]添加到fillable属性,以允许在index.blade.php

时间:2019-08-01 22:18:04

标签: laravel-5 laravel-5.7

在MySQL的“我的用户”表中创建一个“创建新用户”,同时尝试在配置文件表中的同一用户中创建标题。

这是来自freeCodeCamp的laravel课程。

protected static function boot()
    {
        parent::boot();

        static::created(function ($user) {
            $user->profile()->create([
                'title' => $user->username,
            ]);
        });
    }

我希望用户一旦注册就可以为用户创建一个可空文件。

0 个答案:

没有答案