Salary Structure Details

{{ $salaryStructure->user->name }}

{{ $salaryStructure->is_active ? 'Active' : 'Inactive' }}

{{ $salaryStructure->user->email }}

Salary Information

Basic Salary
{{ number_format($salaryStructure->basic_salary, 2) }}
Payment Frequency
{{ $salaryStructure->payment_frequency }}
Hourly Rate
{{ $salaryStructure->hourly_rate ? number_format($salaryStructure->hourly_rate, 2) : 'N/A' }}

Validity Period

Effective From
{{ $salaryStructure->effective_from->format('M d, Y') }}
Effective To
{{ $salaryStructure->effective_to ? $salaryStructure->effective_to->format('M d, Y') : 'Indefinite' }}

Allowances

House Allowance
{{ number_format($salaryStructure->house_allowance, 2) }}
Transport Allowance
{{ number_format($salaryStructure->transport_allowance, 2) }}
Medical Allowance
{{ number_format($salaryStructure->medical_allowance, 2) }}
Other Allowances
{{ number_format($salaryStructure->other_allowances, 2) }}
Total Allowances
{{ number_format($salaryStructure->total_allowances, 2) }}
Total Monthly Salary {{ number_format($salaryStructure->gross_salary, 2) }}
Created: {{ $salaryStructure->created_at->format('M d, Y') }} @if($salaryStructure->created_at != $salaryStructure->updated_at)
Last updated: {{ $salaryStructure->updated_at->format('M d, Y') }} @endif
@csrf @method('DELETE')