“Błąd: wywołanie funkcji członka addeagerconstraints () na null w pliku” Kod odpowiedzi

Błąd: wywołanie funkcji członka addeagerconstraints () na null w pliku


in your relationship you are missing return statement, 
please follow the following example

public function user() {
        $this->belongsTo(User::class,'user_id','id');
}

to 
  
public function user() {
        return $this->belongsTo(User::class,'user_id','id');
    }
shafeeque

Zadzwoń do funkcji członka addeagerconstraints () na null

You are missing return statements in the methods that define relations. They need to return relation definition.
Alive Ape

Odpowiedzi podobne do “Błąd: wywołanie funkcji członka addeagerconstraints () na null w pliku”

Pytania podobne do “Błąd: wywołanie funkcji członka addeagerconstraints () na null w pliku”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu