@extends(view_path('master')) @section('body')
@if($subscriptions->count())

{{ __('Our Pricing Plans') }}

{{ __('Explore our pricing plans, from :first to :last, choose the one that meets your needs.', ['first' => $subscriptions->first()->name, 'last' => $subscriptions->last()->name]) }}

@foreach($subscriptions as $subscription)
{{ price($subscription->price, false, true) }} @if($subscription->title)/ {{ __($subscription->title) }}@endif
@if(strip_tags($subscription->description)) {!! $subscription->description !!} @elseif($subscription->specifications) @foreach($subscription->specifications ?? [] as $specification)
{{ $specification->text }}
@endforeach @endif
@if($active_subscription && !config('app.subscriptions.accumulative')) {{ __('Get started') }} @else {{ __('Get started') }} @endif
{{ __($subscription->name) }}
@endforeach
@if($active_subscription && !config('app.subscriptions.accumulative')) * {{ __("It's not possible to subscribe to another membership plan while your previous one has not expired yet.") }} @endif
@endif
@endsection