@extends('layouts.app') @section('title','Pricing Plans — JobPortal') @section('content') @section('styles') @endsection

Pricing Plans

Monthly
Annually
@if($plans->count())
@foreach($plans as $plan) @php $idx = $loop->index; @endphp
@if($idx === 1) Most Value @endif
{{ $plan->name }} @if($plan->badge) {{ $plan->badge }} @endif
{{ number_format($plan->price) }} /{{ $plan->billing_cycle }}

{{ $plan->description ?? 'For most businesses that want to optimize their hiring process' }}


  • {{ $plan->job_posts == 0 ? 'Unlimited' : $plan->job_posts }} Job Posts
  • {{ $plan->resume_views_limit == 0 ? 'Unlimited' : $plan->resume_views_limit }} Resume Views
  • @if($plan->candidate_unlock_limit > 0)
  • {{ $plan->candidate_unlock_limit }} Candidate Profile Unlocks
  • @endif @if(is_array($plan->features)) @foreach($plan->features as $feature)
  • {{ $feature }}
  • @endforeach @endif
@auth @if(auth()->user()->activeSubscription && auth()->user()->activeSubscription->plan_id == $plan->id) @else Upgrade to {{ $plan->name }} @endif @else Get Started @endauth
@endforeach

Custom Plan Inquiry

Get a tailored pricing plan for your organization.

Contact Us
@else

No plans available.

@endif
@endsection @section('scripts') @endsection