@if (!isset($readonly))
@can('enable', $plan)
@endcan
@can('disable', $plan)
@endcan
@endif
{{ $plan->name }}
@if ($plan->price == 0.0)
{{ trans('messages.free') }}
@else
{{ Acelle\Library\Tool::format_price($plan->price, $plan->currency->format) }} /
{{ $plan->displayFrequencyTime() }}
@endif
@include('admin.plans._features')
@if (!isset($readonly))
@endif
@endif