Laravel 4 - Select related models

匆匆过客 提交于 2020-01-04 14:31:19

问题


I have following table

Schema::create('jokes_categories', function(Blueprint $table) {
    $table->increments('id');
    $table->string('name');
    $table->string('is_active');
    $table->timestamps();
});

Schema::create('jokes', function(Blueprint $table) {
    $table->increments('id');
    $table->string('content', 200)->unique();;
    $table->enum('is_active', array('Y', 'N'));
    $table->integer('category_id')->unsigned();
    $table->foreign('category_id')->references('id')->on('jokes_categories');
    $table->timestamps();
});

In the jokes table category_id is a foreign key and it has a one-to-many relationship with jokes_categories

In the model I have the following:

class Joke extends \Eloquent {

    public static $rules = array();

    // Don't forget to fill this array
    protected $fillable = array();

    public function JokesCategory(){
         return $this->belongsTo('JokesCategory');
    }
}

In the controller I have the following:

$jokes = Joke::all();

But it does not pull through joke_categories.name (I was under the impression that the model definition will directly help to pull related models)

What could be the solution?


回答1:


Your query is just on the Joke table.

You could eagerload the categories ie.

$jokes = Joke::with('JokesCategory')->get();

See docs: http://laravel.com/docs/eloquent#eager-loading




回答2:


The convention is actually camel case instead of pascal case, otherwise Laravel doesn't seem to automatically load the relationships. I made the same mistake and couldn't figure out why my relationships where not loading automatically.

public function jokesCategory()


来源:https://stackoverflow.com/questions/23131565/laravel-4-select-related-models

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!