List

@if(empty($paymentPlans)) @else @foreach($paymentPlans as $paymentPlan) {{-- --}} @endforeach @endif
# Name Price ({{ config('app.currency') }}) Description Vat
Empty list
{{ $loop->iteration }} {{ $paymentPlan->name }} @if($paymentPlan->price){{ $paymentPlan->price }} @elseif($paymentPlan->yearly_price) {{$paymentPlan->yearly_price}} @endif {{ $paymentPlan->description }} {{ $paymentPlan->vat }}@if($paymentPlan->recommended_package == 1)Yes @else No @endif
{{ csrf_field() }} @method('DELETE')

Archived plans

@foreach($paymentPlansArchive as $paymentPlan) @endforeach
# Name Price ({{ config('app.currency') }}) Description Number of subscribes Recomended on Front
{{ $loop->iteration }} {{ $paymentPlan->name }} {{ $paymentPlan->price }} {{ $paymentPlan->description }} {{ count($paymentPlan->freelancers) }} @if($paymentPlan->recommended_package == 1)Yes @else No @endif
@include('admin-panel.warnings.delete', ['message' => trans('cms/payment-plans.warning-destroy')])