如何从其他表

时间:2018-02-19 18:36:34

标签: php laravel-5

我有一张桌子"文章"在此表中列名称" user_id",我有另一个表"用户"商店用户名,profile_pic等...我想在主页上获取用户名,我已经拿到了文章标题。

文章模型

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Article extends Model
{
    public function category()
    {
        return $this->belongsTo('App\Category');
    }
    public function tags()
    {
        return $this->belongsToMany('App\Tag');
    }
}

查看页面(主页)

{{$article->user_id}}

这里我要显示用户名

用户模型

<?php
namespace App;
use Illuminate\Notifications\Notifiable;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
    use Notifiable;

    protected $fillable = [
        'name', 'email', 'password',
    ];
    protected $hidden = [
        'password', 'remember_token',
    ];
}

1 个答案:

答案 0 :(得分:1)

将以下内容添加到文章类:

public function user() {
    return $this->belongsTo(User::class);
}

然后,您可以使用$article->user->name

访问相关的用户数据