@can('massDelete', \App\Models\SubscriptionPlan::class)
@if ($subscriptionPlan->shops_count)
@else
@endif
|
@endcan
|
{{ $subscriptionPlan->name }}
@if ($subscriptionPlan->featured)
{{ trans('app.featured') }}
@endif
{{ $subscriptionPlan->shops_count }}
|
{{ get_formated_currency($subscriptionPlan->cost, 2, config('system_settings.currency.id')) }} |
{{ $subscriptionPlan->team_size }} |
{{ $subscriptionPlan->inventory_limit }} |
@can('view', $subscriptionPlan)
@endcan
@can('update', $subscriptionPlan)
@endcan
@can('delete', $subscriptionPlan)
@if ($subscriptionPlan->shops_count)
@else
{!! Form::open(['route' => ['admin.setting.subscriptionPlan.trash', $subscriptionPlan->plan_id], 'method' => 'delete', 'class' => 'data-form']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!}
{!! Form::close() !!}
@endif
@endcan
|
@endforeach