class Comment extends Model
{
/**
* 獲取此評論所屬文章
*/
public function post()
{
return $this->belongsTo('App\Post');
}
}
按文件這樣操作後,卻獲取不到文章資訊
php artisan tinker
App\Comment::find(1)->post()->title
// 返回了 null
App\Comment::find(1)->post()->first()->title
// 這樣才返回了標題
為什麼會這樣,是我哪裡寫錯了嗎?求教
本作品採用《CC 協議》,轉載必須註明作者和本文連結