@if(strlen($personnel->id) > 3 )
{{ 'CDO' . $personnel->created_at->format('Y') . '-' . $personnel->id }} |
@elseif(strlen($personnel->id) > 2 )
{{ 'CDO' . $personnel->created_at->format('Y') . '-0' . $personnel->id }} |
@elseif (strlen($personnel->id) > 1)
{{ 'CDO' . $personnel->created_at->format('Y') . '-00' . $personnel->id }} |
@else
{{ 'CDO' . $personnel->created_at->format('Y') . '-000' . $personnel->id }} |
@endif
{{ $personnel->first_name }} |
{{ $personnel->middle_name }} |
{{ $personnel->last_name }} |
{{ $personnel->suffix }} |
{{ $personnel->sex }} |
{{ $personnel->civil_status }} |
{{ $personnel->citizen }} |
{{ $personnel->height }} |
{{ $personnel->weight }} |
{{ $personnel->blood_type }} |
{{ $personnel->date_of_birth }} |
{{ $personnel->contact_number }} |
{{ $personnel->email }} |
{{ $personnel->permanent_address }} |
{{ $personnel->current_address }} |
{{ $personnel->birthplace }} |
{{ $personnel->employment_date }} |
{{ $personnel->employment_status }} |
{{ $personnel->license_number }} |
{{ $personnel->issued_date }} |
{{ $personnel->expiration_date }} |
{{ $personnel->issued_at }} |
{{ $personnel->sss_number }} |
{{ $personnel->pagibig_number }} |
{{ $personnel->philhealth_number }} |
{{ $personnel->tin_number }} |
{{ $personnel->is_active ? 'Active' : 'Inactive' }} |
@endforeach