@extends('admin.layouts.app') @section('title') {{ __('plan_list') }} @endsection @section('content')
@if (userCan('plan.update') && $plans->count())
@csrf
@endif
@if (userCan('plan.update') && $plans->count())
@csrf
@endif
@if (userCan('plan.create'))   {{ __('create') }} @endif
@forelse ($plans as $plan)

{{ $plan->label }}

@if ($plan->recommended)
{{ __('recommended') }}
@endif @if ($plan->id == $setting->default_plan)
{{ __('default') }}
@endif

{{ currencyPosition($plan->price) }}

{{ $plan->description }}

{{ __('job_limit') }} :
{{ $plan->job_limit }}
{{ __('featured_job_limit') }} :
{{ $plan->featured_job_limit }}
{{ __('highlight_job_limit') }} :
{{ $plan->highlight_job_limit }}
{{ __('candidate_cv_preview_limit') }} :
{{ $plan->candidate_cv_view_limitation == 'limited' ? $plan->candidate_cv_view_limit:'∞' }}
@if ($plan->frontend_show) {{ __('show_frontend') }} @else {{ __('show_frontend') }} @endif
@empty

{{ __('there_is_no_plan_found_in_this_page') }}.

@if (userCan('plan.create')) {{ __('add_your_first_plan') }} @endif
@endforelse
@endsection @section('style') @endsection @section('script') @endsection