我有一个“评论”表,其中有一个名为“来自用户”的列。所以基本上是放评论的用户。在此列中,用户的id存储在users表中。是否可以在我的视图中找到用户名?
这就是它现在的样子:

 @foreach($authUser->reviews as $review)
   <p>{{ $review->body }} - {{$review->from_user }}</p>
 @endforeach

所以这段代码现在显然显示了用户的id。
这就是我的用户表的外观:
ID |名称|用户名|。。。
这就是我的评论表:
ID |来自|用户|在|用户|身上
所以我的评论表中的from_用户等于我的users表的ID
所以我的问题是是否可以在我的视图中的foreach循环中访问我的用户名?
我对拉勒维尔还不太熟悉,所以我很感激你的帮助!
多谢提前
编辑:用户模型
class User extends Model implements AuthenticatableContract,
                                    AuthorizableContract,
                                    CanResetPasswordContract
{
    use Authenticatable, Authorizable, CanResetPassword, Messagable;

    protected $table = 'users';

    protected $fillable = ['name', 'email', 'password', 'firstname', 'lastname', 'straat', 'postcode', 'plaats', 'provincie', 'role', 'specialisatie'];

    protected $hidden = ['password', 'remember_token'];

    public function projects()
    {
        return $this->hasMany('App\Project');
    }

    public function reviews()
    {
        return $this->hasMany('App\Review');
    }

    public function comments()
    {
        return $this->hasMany('App\Comment');
    }
}

EDIT2我的评论模型
<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Review extends Model
{
    protected $guarded = [];

    protected $table = 'reviews';

    public function User()
    {
        return $this->belongsTo('App\User');
    }
}

最佳答案

更新
在您的review model中,您需要告诉关系要使用哪个外键。默认情况下,它会添加relationName_id
雄辩地通过检查
关系方法的名称,并将方法名称添加到
_id。但是,如果手机型号上的外键不是用户id,则可以将自定义密钥名称作为第二个参数传递给下面的
方法。#Source

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Review extends Model
{
    protected $guarded = [];

    protected $table = 'reviews';

    public function user()
    {
       return $this->belongsTo('App\User', 'from_user');
    }
}

在你看来
@foreach($authUser->reviews as $review)
   <p>{{ $review->body }} - {{ $review->user->name }}</p>
 @endforeach

10-07 13:28
查看更多