“Laravel hat viele tief” Code-Antworten

Laravel hat viele tief

class User extends Model {
    use \Staudenmeir\EloquentHasManyDeep\HasRelationships;

    public function cards() {
        return $this->hasManyDeep(Card::class, [Subject::class, Deck::class]);
    }
}
Thoughtful Tortoise

Laravel hat viele tief

$user->cards()->get();
Thoughtful Tortoise

Laravel hat viele tief

//App\User;

public function cards()
{
    Card::whereHas('decks', function($q){
         return $q->whereHas('subjects', function($q){
            return $q->where('user_id', $this->id);
        });
    });
}
Thoughtful Tortoise

Ähnliche Antworten wie “Laravel hat viele tief”

Fragen ähnlich wie “Laravel hat viele tief”

Weitere verwandte Antworten zu “Laravel hat viele tief” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen