一對一 Hasone

請問我透過

    $services = Service::where('service_public', '>', 0)->paginate(15);

把我所有的資料都撈出來,其中有一個欄位是 使用者編號
我想要在前台 blade 渲染出來 使用者的名稱,
我有在 service的 model 使用

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

我的到的是一個多筆的資料,我該如何把這多筆資料的同一個欄位都替換呢?

$services = Service::with('User')->where('service_public', '>', 0)->paginate(15);

blade 渲染的时候,foreach 中使用 $service->user->name

JellyBool
修改的评论也不能少于六个字哦!
shihherokai
修改的评论也不能少于六个字哦!
shihherokai
修改的评论也不能少于六个字哦!