我有以下表格:
用户
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->string('username', 30);
$table->string('email')->unique();
$table->string('password', 60);
$table->string('remember_token')->nullable();
$table->timestamps();
});
组织
Schema::create('organisations', function(Blueprint $table)
{
$table->increments('id');
$table->string('name')->unique('name');
$table->integer('owner_id')->unsigned()->index()->nullable();
$table->foreign('owner_id')->references('id')->on('users');
$table->timestamps();
});
我有以下组织 Eloquent模型:
class Organisation extends Eloquent {
/**
* @return \Illuminate\Database\Eloquent\Relations\HasOne
*/
public function owner()
{
return $this->belongsTo('User', 'owner_id', 'id');
}
}
在我的控制器上,我加载所有organisations
并将其传递给视图,如下所示:
public function index()
{
return View::make('organisations.index')
->with('organisations', Organisation::all());
}
在我看来,当我尝试显示如下数据时:
@foreach($organisations as $organisation)
<div>
Name : {{ $organisation->name }}
<br>
Owner: {{ $organisation->owner()->email }}
</div>
@endofreach
当我这样做时,我得到的对象是null
例外。
我也试图使用hasOne
关系,但它也没有用。
知道我在这里做错了什么吗?
答案 0 :(得分:1)
试试这个:
@foreach($organisations as $organisation)
<div>
Name : {{ $organisation->name }}
<br>
Owner: {{ $organisation->owner->email }}
</div>
@endforeach
没有所有者的()
。就像你得到一个Model \ User对象而不是belongsTo对象。 BelongsTo对象不包含任何用户信息,但允许您添加更多有说服力的方法来过滤查询。