@php $role = session('login_role'); $rolePath = $role === 'staff' ? 'staff' : 'student'; $portal = $role === 'staff' ? 'STAFF PORTAL' : 'STUDENT PORTAL'; $serviceCount = count($services ?? []); $allocationAmount = $role === 'staff' ? 'RM250' : 'RM100'; $allocationDesc = $role === 'staff' ? 'Per year (+ dependents)' : 'Per academic year'; @endphp Dental Services

Dental Services

{{ now()->format('D, d M Y') }}

Our Dental Services

Comprehensive dental care for UPSI students and staff

🦷

{{ $serviceCount }}

Clinical treatments

🎓

{{ $allocationAmount }}

{{ $allocationDesc }}

PKU Dental

Dental care service

@if(count($services ?? []) > 0)
@foreach($services as $service)
{{ $service['service_name'] ?? 'Service' }}

{{ $service['service_name'] ?? '-' }}

{{ $service['description'] ?? '-' }}

@endforeach
@else
No dental services have been published yet.
@endif