@extends('front.axies.master') @section('body')
@foreach(config('categories.category_parents') as $category) {{ $category['name'] }} @if(!$loop->last)   @endif @endforeach
{{ __('Discover our membership plans') }}
{{ __("Upgrade your journey with our tailored membership plans! Whether Basic, Plus, or Premium, there's something for everyone. Subscribe now and enjoy exclusive perks!") }}
@foreach($subscriptions as $subscription)
{{ $subscription->name }}
{{ $subscription->subheading }}
{{ price($subscription->price) }}
{{ $subscription->title }}
@if(strip_tags($subscription->description)) {!! $subscription->description !!} @elseif($subscription->specifications) @foreach($subscription->specifications ?? [] as $specification)
@if($specification->included) @else @endif
{{ $specification->text }}
@endforeach @endif
@endforeach
@endsection