@extends('layouts.app_layout')
@section('content')
{{ $whoIsWho->name ?? '—' }}
{{ $whoIsWho->name_hi ?? '—' }}
{{ $whoIsWho->designation ?? '—' }}
{{ $whoIsWho->designation_hi ?? '—' }}
{{ $whoIsWho->division->name ?? '—' }}
{{ $whoIsWho->mobile_number ?? '—' }}
{{ $whoIsWho->email_id ?? '—' }}
{{ $whoIsWho->address ?? '-' }}
{{ $whoIsWho->address_hi ?? '-' }}
{{ $whoIsWho->show_on_homepage_desc }}
{{ $whoIsWho->hide_on_who_is_who_desc}}
@if ($whoIsWho->is_approved == 1) Approved @elseif ($whoIsWho->is_approved == 2) Rejected @else Pending @endif
{!! $whoIsWho->is_published ? 'Published' : 'Not Published' !!}
{{ $whoIsWho->remarks ?? 'No remarks available' }}