()と呼ばれるべきではありません。非静的メソッドを照らしサポートコレクション::私は、次のようにデータ配列を取得しようと静的
$coupons = $user->coupons::where('is_activated_flg', 1)->where('is_used_flg', 0)->lists('amount');
私はこのエラーを持っている:
Non-static method Illuminate\Support\Collection::where() should not be called statically
問題点を教えてください。
$couponQuery = $user->coupons()->where('is_activated_flg', 1)->where('is_used_flg', 0);
$couponCollection = $couponQuery->get();
:
のようにそれを呼び出す:: WHERE'ことwhould' $ USER- >クーポン - >どこで ' – ash
@ashそれを入手しよう!ありがとうございました! – lalala