eloquent 关系显示为空

eloquent relation shows null

我有这样的用户和项目迁移:

Schema::create('users', function (Blueprint $table) {
            $table->id();
            $table->string('name');
            $table->string('email')->unique();
            $table->timestamp('email_verified_at')->nullable();
            $table->string('password');
            $table->bigInteger('last_used_society_id');
            $table->bigInteger('last_used_project_id');
            $table->rememberToken();
            $table->timestamps();
        });

Schema::create('projects', function (Blueprint $table) {
            $table->id();
            $table->string('name');
            $table->string('eplan_name')->nullable();
            $table->bigInteger('society_id');
            $table->timestamps();

            //$table->foreign('user_id')->references('id')->on('users');
        });

        Schema::table('projects', function (Blueprint $table) {
            $table->foreign('society_id')->references('id')->on('societies');
        });

table 加入外国人后修改用户:

    Schema::table('users', function (Blueprint $table) {
        $table->foreign('last_used_society_id')->references('id')->on('societies');
        $table->foreign('last_used_project_id')->references('id')->on('projects');
    });

在用户模型中我有这个:

public function ActualProject(){
    return $this->belongsTo('App\Models\Project', 'users_last_used_project_id_foreign');
}

public function ActualSociety(){
    return $this->belongsTo('App\Models\Society', 'users_last_used_society_id_foreign');
}

但是当我尝试调用 $user->ActualProject 它时 return null

为什么要使用 'users_last_used_project_id_foreign'?

只需按原样使用列名称...

public function ActualProject(){
    return $this->belongsTo('App\Models\Project', 'last_used_project_id');
}