0

第一次使用 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();
            });

错误在哪里??

谢谢罗伯托

4

1 回答 1

1

编辑

我测试了您的迁移和模型,并且所有工作都无需触及任何东西。我在github 上创建了一个 repo 来回答你的问题。

我不确定为什么对 Roberto 不起作用,但也许您在设置数据库或迁移时犯了一些错误。

我希望存储库中的代码对您有所帮助,并确保遵循自述文件的说明。

于 2013-05-21T01:10:45.103 回答