EPF Number
{{ $staff->epf_no ?? 'Not Provided' }}
Hourly Rate
{{ $staff->hourly_rate ?? 'Not Set' }}
Basic Salary
{{ $staff->basic_salary ?? 'Not Set' }}
Contract Type
@if(isset($staff->contract_type) && !empty($staff->contract_type))
{{ $staff->contract_type }}
@else
Not Specified
@endif