@extends('backend.layouts.app') @section('title') {{ __('plan_list') }} @endsection @section('content')
@if (userCan('plan.update') && $plans->count())
@csrf
{{ __('set_recommended_package') }}
@endif
@if (userCan('plan.update') && $plans->count())
@csrf
{{ __('set_default_package') }}
@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

{{ config('templatecookie.currency_symbol') }}{{ $plan->price }}

@if (isset($plan->descriptions) && isset($plan->descriptions[0])) {!! $plan->descriptions[0]->description !!} @else @php $default_description = $plan_descriptions->where('plan_id', $plan->id)->first(); @endphp @if ($default_description && $default_description->description) {!! $default_description->description !!} @else {!! __('no_description_has_been_added_to_this_language') !!} @endif @endif

{{ __('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 : __('unlimited') }}
@if ($plan->frontend_show) {{ __('show_frontend') }} @else {{ __('show_frontend') }} @endif
{{ __('ability_to_profile_verify') }} :
@if ($plan->profile_verify) @else @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