@php $ctcDetails = json_decode($interview->ctc_data ?? ''); @endphp Candidate CTC | Aarya Agriculture
Logo

CTC Structure

@csrf
Employee Details
Employee Name: {{ $interview->name ?? '-' }}
Location Of Posting: {{ $interview->location->name ?? '-' }}
Designation: {{ $interview->designation->name ?? '-' }}
Qualification: {{ $interview->qualification->name ?? '-' }}
Mobile No.: {{ $interview->mobile_no ?? '-' }}
Email Address: {{ $interview->email ?? '-' }}
Experience: {{ $interview->experience ?? '-' }} @if ($interview->experience == 'Experienced') ({{ $interview->current_working_duration }} years) @endif
Date Of Joining: {{ date('d-m-Y', strtotime($interview->expected_date_of_joining)) }}
@if ($ctcDetails->basic_month_amount < 21000) @endif
CTC Details
CTC To Offer {{ number_format($ctcDetails->ctc_to_offer, 2, '.', '') }}
{{ formatValue($ctcDetails->ctc_type, $ctcDetails->ctc_type_value) }} {{ $ctcDetails->ctc_amount }}
Variable Pay ({{ ucfirst($ctcDetails->variable_pay_type) }}) {{ formatValue($ctcDetails->variable_pay_type, $ctcDetails->variable_pay_type_value) }} {{ $ctcDetails->variable_pay_amount }}
Balance {{ $ctcDetails->balance_amount }}
Basic Year ({{ ucfirst($ctcDetails->basic_year_type) }}) {{ formatValue($ctcDetails->basic_year_type, $ctcDetails->basic_year_type_value) }} {{ $ctcDetails->basic_year_amount }}
Basic Month {{ $ctcDetails->basic_month_amount }}
Medical {{ $ctcDetails->medical_amount }}
PT {{ $ctcDetails->pt_amount }}
Employee PF ({{ ucfirst($ctcDetails->employee_pf_type) }}) {{ formatValue($ctcDetails->employee_pf_type, $ctcDetails->employee_pf_type_value) }} {{ $ctcDetails->employee_pf_amount }}
ESIC {{ $ctcDetails->esic_percentage }}% {{ $ctcDetails->esic_amount }}
HRA ({{ ucfirst($ctcDetails->hra_type) }}) {{ formatValue($ctcDetails->hra_type, $ctcDetails->hra_type_value) }} {{ $ctcDetails->hra_amount }}
Gratuity ({{ ucfirst($ctcDetails->gratuity_type) }}) {{ formatValue($ctcDetails->gratuity_type, $ctcDetails->gratuity_type_value) }} {{ $ctcDetails->gratuity_amount }}
Employer PF ({{ ucfirst($ctcDetails->employer_pf_type) }}) {{ formatValue($ctcDetails->employer_pf_type, $ctcDetails->employer_pf_type_value) }} {{ $ctcDetails->employer_pf_amount }}
Total Amount {{ $ctcDetails->total_amount }}
Special All {{ $ctcDetails->special_all }}
Annual Package {{ $ctcDetails->annual_package }}
VIP (Monthly) {{ $ctcDetails->vip_monthly_amount }}
SIP ({{ ucfirst($ctcDetails->sip_type) }}) {{ formatValue($ctcDetails->sip_type, $ctcDetails->sip_type_value) }} {{ $ctcDetails->sip_amount }}
Monthly Salary @php $monthlyGrossAmount = $ctcDetails->balance_amount / 12; $totalGrossSalaryYearly = $monthlyGrossAmount * 12 + $ctcDetails->employer_pf_amount; $totalGrossSalaryMonthly = $totalGrossSalaryYearly / 12; $monthlySalary = $totalGrossSalaryMonthly + $ctcDetails->variable_pay_amount / 12 + $ctcDetails->sip_amount / 12; @endphp {{ number_format($monthlySalary, 2, '.', '') }}