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->price }} - /{{ $plan->monthly_billing ? 'month' : 'year' }} + ${{ $plan['price'] }} + /{{ $plan['monthly_billing'] ? 'month' : 'year' }}