@extends('user.layout.app') @section('title', 'Plans & Pricing') @section('content')

Plans & Pricing

Choose the Perfect Plan for Your Career

Unlock premium features and create professional resumes that stand out

@if ($plans->isEmpty())

No plans available

Please contact support for more information.

@else
@foreach ($plans as $plan) @php $monthly = data_get($plan->price, 'monthly_price'); $yearly = data_get($plan->price, 'yearly_price'); $features = (array) data_get($plan->condition, 'features', []); @endphp
{{ $plan->title }}
@if (!empty($plan->description))

{{ $plan->description }}

@endif @if (!is_null($monthly))

${{ number_format((float) $monthly, 2) }}

per month

@endif @if (!is_null($yearly))

${{ number_format((float) $yearly, 2) }}

per year @if ($monthly && $monthly > 0) (Save {{ round((($monthly * 12 - $yearly) / ($monthly * 12)) * 100) }}%) @endif

@endif @if (!empty($features))
    @foreach ($features as $feature)
  • {{ $feature }}
  • @endforeach
@endif
@endforeach

Why Choose Our Premium Plans?

Unlimited Downloads

Download your resumes as many times as you need in multiple formats

Multiple Designs

Choose from 4 professional PDF designs to match your style

AI Assistance

Get AI-powered content suggestions to enhance your resume

@endif
@endsection