@extends('schoolLayout.app') @section('content')
@forelse ($staff as $person)

{{ $person->full_name }}

Email: {{ $person->email }}

CNIC: {{ $person->cnic }}

Reg. No: {{ $person->registration_no }}

@php $documents = [ 'cv_resume' => 'CV/Resume', 'degree_certificate' => 'Degree Certificate', 'transcript' => 'Transcript', ]; @endphp @foreach ($documents as $field => $label) @if (!empty($person->$field))

{{ $label }}

Uploaded on {{ $person->created_at->format('d M Y') }}

Verified
@endif @endforeach
@empty

No matching staff found.

@endforelse
@endsection