{{-- Single Plan Pricing Box --}} {{-- All data is prepared by ProductService - no business logic in theme --}} @php $plan = $defaultPlan; $tier = $plan['pricing_tiers']->first(); @endphp
{{-- Plan Header --}}

{{ $plan['name'] }}

@if($plan['description'])

{{ $plan['description'] }}

@endif
{{-- Price Display --}}
${{ number_format($tier['price'], 0) }} {{ $tier['billing_cycle_label'] }}
{{-- Features List --}} @if(count($plan['features']) > 0)
@lang('shop.What\'s Included')
@endif {{-- Hidden Form Inputs --}} {{-- Optional Add-ons --}} @if($tier['addons']->count() > 0)
@lang('shop.Optional Add-ons')
@foreach($tier['addons'] as $addon)
@endforeach
@endif {{-- Total Price --}}
@lang('shop.Total Due Today') ${{ number_format($tier['price'], 2) }}
{{-- Purchase Button --}}