diff --git a/resources/views/pages/association/profile.blade.php b/resources/views/pages/association/profile.blade.php index 89715fa..5123acd 100644 --- a/resources/views/pages/association/profile.blade.php +++ b/resources/views/pages/association/profile.blade.php @@ -127,6 +127,7 @@ $listenForPayment = function () { $paymentEvent->save(); $this->payments = $this->currentPleb ->paymentEvents() + ->where('paid', true) ->get(); $this->currentYearIsPaid = true; } @@ -135,6 +136,7 @@ $listenForPayment = function () { $this->currentYearIsPaid = true; $this->payments = $this->currentPleb ->paymentEvents() + ->where('paid', true) ->get(); } };