@extends('admin.layouts.layouts') @section('title', 'View CTC') @section('content')
CTC View
← Back
Effective Month {{ date('F, Y', strtotime($ctc->effective_date)) }}
Variable Pay {{ $ctc->variable_pay }}
Basic {{ $ctc->basic }}
HRA {{ $ctc->hra }}
Gratuity {{ $ctc->gratuity }}
Employee PF {{ $ctc->employee_pf }}
Employer PF {{ $ctc->employer_pf }}
ESIC {{ $ctc->esic }}
SIP {{ $ctc->sip }}
Created At {{ $ctc->created_at->format('d-m-Y h:i a') }}
Created By {{ $ctc->creator->name }}
Updated At {{ isset($ctc->updated_by) ? $ctc->updated_at->format('d-m-Y H:i') : '-' }}
Updated By {{ isset($ctc->updated_by) ? $ctc->editor->name : '-' }}
@endsection