From f60c986e070809225a57b5657f94bb5252b72363 Mon Sep 17 00:00:00 2001 From: idevakk <219866223+idevakk@users.noreply.github.com> Date: Mon, 17 Nov 2025 10:43:57 -0800 Subject: [PATCH] fix(plan-cache): update nested property access after migrating cache from object list to array list --- .../livewire/dashboard/pricing.blade.php | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/resources/views/livewire/dashboard/pricing.blade.php b/resources/views/livewire/dashboard/pricing.blade.php index ad0daa4..1a030ad 100644 --- a/resources/views/livewire/dashboard/pricing.blade.php +++ b/resources/views/livewire/dashboard/pricing.blade.php @@ -9,20 +9,20 @@ @foreach($plans as $plan)
-

{{ $plan->name }} @if(!$plan->monthly_billing) +

{{ $plan['name'] }} @if(!$plan['monthly_billing']) 2 Months Free @endif

- ${{ $plan->price }} - /{{ $plan->monthly_billing ? 'month' : 'year' }} + ${{ $plan['price'] }} + /{{ $plan['monthly_billing'] ? 'month' : 'year' }}

- @if($plan->accept_stripe && $plan->pricing_id !== null) - + @if($plan['accept_stripe'] && $plan['pricing_id'] !== null) + Pay with card @endif - @if($plan->accept_shoppy && $plan->shoppy_product_id !== null) - + @if($plan['accept_shoppy'] && $plan['shoppy_product_id'] !== null) + Pay with crypto @endif - @if($plan->accept_oxapay && $plan->oxapay_link !== null) + @if($plan['accept_oxapay'] && $plan['oxapay_link'] !== null) Pay with crypto