Answers for "laravel add condition to relation in model curd"

PHP
1

laravel adding condition to relation

class Game extends Eloquent {
    // many more stuff here

    // relation without any constraints ...works fine 
    public function videos() {
        return $this->hasMany('Video');
    }

    // results in a "problem", se examples below
    public function available_videos() {
        return $this->videos()->where('available','=', 1)->get();
    }
}
Posted by: Guest on March-30-2020

Code answers related to "laravel add condition to relation in model curd"

Browse Popular Code Answers by Language