@extends('site.master') @section('main-content')

{{ isset($staff->title) ? $staff->title : '' }}

{{ $staff->title }}

{{ $staff->designations->pluck('title')->implode(', ') }}

{{ $staff->provinces->isNotEmpty() ? $staff->provinces->implode(', ') : 'No provinces available' }}

@if ($staff->appointment_date && $staff->showappointment)
{{ getNepaliDate($staff->appointment_date) }}
@endif
@if ($staff->phone_no)
@php $phoneNumbers = explode(',', $staff->phone_no); @endphp @foreach ($phoneNumbers as $phoneNumber) {{ numEnToNp(trim($phoneNumber)) }} @if (!$loop->last) , @endif @endforeach
@endif {{-- {{ $staff-> }} --}} @if ($staff->email) @endif
{!! $staff->description !!}
@endsection @push('scripts') @endpush