@extends(view_path('master')) @section('additional_head_tags') @endsection @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
@foreach(explode("\n", $subscription->description) as $note)
{{ $note }}
@endforeach
@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