@can('access premium features') @php $plans = \App\Models\SubscriptionPlan::where('billing_provider', Auth::user()?->billing_provider ?? config('saashovel.BILLING_PROVIDER'))->get()->keyBy('tier')->toArray(); $subTier = \App\Models\SubscriptionPlan::where('plan_id', Auth::user()->subscriptions()->latest()->first()->items->first()->price_id)->first()->name; @endphp @endcan @can('access basic features') @php $plans = \App\Models\SubscriptionPlan::where('billing_provider', Auth::user()?->billing_provider ?? config('saashovel.BILLING_PROVIDER'))->get()->keyBy('tier')->toArray(); @endphp @endcan