第一次使用 Eloquent,我不明白这里有什么问题..
class TourItem extends Eloquent {
public function tour()
{
return $this->belongsTo('Tour');
}
}
class Tour extends Eloquent {
public function tourItem()
{
return $this->hasMany('TourItem');
}
}
在这里,我试图让游览 itens 但只返回 NULL。
$tour = Tour::where('slug', '=', $postSlug)->where('wrh_id', '=', 1)->first();
if (!is_null($tour)) {
var_dump($tour->tourItem);
foreach ($tour->tourItem as $item) {
var_dump($item->texto);
}
}
数据库架构:
Schema::create('tours', function($t) {
$t->increments('id');
$t->string('titulo');
$t->string('slug');
$t->boolean('main');
$t->integer('wrh_id');
$t->timestamps();
});
Schema::create('tour_items', function($t) {
$t->increments('id');
$t->string('titulo');
$t->text('texto');
$t->text('saiba_mais');
$t->integer('tour_id');
$t->timestamps();
});
错误在哪里??
谢谢罗伯托