@extends('layouts.app') @section('create-button') @lang('app.createNew') @endsection @section('content')

@lang('menu.packages')

@if(!is_null($packageData) && $paymentSetting->stripe_status == 'active')
@lang('messages.stripePlanIdRequired')
@endif
@forelse ($packages as $key=>$item) @empty @endforelse
# @lang('modules.packages.packageName') @lang('modules.packages.monthlyPrice') @lang('modules.packages.annualPrice') @lang('app.feature') @lang('app.status') @lang('app.action')
{{ $key+1 }}. {{ $item->name }} @if($item->recommended)
@endif
{{ $global->currency->currency_symbol.ucfirst($item->monthly_price) }} @if($paymentSetting->stripe_status == 'active')
(@lang('app.stripePlanId') : {{ $item->stripe_monthly_plan_id ?? '-' }}) @endif
{{ $global->currency->currency_symbol.ucfirst($item->annual_price) }} @if($paymentSetting->stripe_status == 'active')
(@lang('app.stripePlanId') : {{ $item->stripe_annual_plan_id ?? '-' }}) @endif
  • @if ($item->career_website) @else @endif @lang('modules.packages.careerWebsite')
  • @if ($item->multiple_roles) @else @endif @lang('modules.packages.multipleRoles')
  • @if ($item->recommended) @else @endif @lang('modules.packages.recommended')
  • @lang('modules.packages.noOfJobOpenings'): {!! ($item->no_of_job_openings > 0) ? $item->no_of_job_openings : "--" !!}
  • @lang('modules.packages.noOfCandidateAccess'): {!! ($item->no_of_candidate_access > 0) ? $item->no_of_candidate_access : "--" !!}
@if($item->status) @else @endif @if(!$item->is_trial) @endif
@endsection @push('footer-script') @endpush