@extends('layouts.app') @section('content')
{{ $profile->designation }}
{{ $profile->department_name }} — {{ $profile->programme_name }}
{{-- Compact links row --}}Email: {{ $profile->email }}
Phone: {{ $profile->phone_number ?: 'N/A' }}
Employee ID: {{ $profile->employee_id ?: 'N/A' }}
Date of Joining: {{ $profile->date_of_joining ? $profile->date_of_joining->format('d M Y') : 'N/A' }}
Qualification: {{ is_array($profile->qualification) ? implode(', ', $profile->qualification) : ($profile->qualification ?: 'N/A') }}
Address: {{ $profile->address ?: 'N/A' }}
Vidhwan ID: {{ $profile->vidhwan_id ?: 'N/A' }}