@if (Session::has('student')) @php $student=Session::get('student'); @endphp
Photo
@csrf
FIRST NAME {{ $student->fname }}
MIDDLE NAME {{ $student->mname }}
LAST NAME {{ $student->lname }}
EMAIL {{ $student->email }}
PHONE {{ $student->phone }}
SUID {{ $student->suid }}
ACTIVATION CODE {{ $student->activation_code }}

APPLICATION

@if ($student->application!=NULL)
DOB {{ $student->application->dob }}
PLACE OF BIRTH {{ $student->application->placeofbirth }}
SEX {{ $student->application->sex->name }}
FATHER'S NAME {{ $student->application->fathernames }}
MOTHER'S NAME {{ $student->application->mothernames }}
MARITAL STATUS {{ $student->application->marital->name }}
COUNTRY {{ $student->application->country->name }}
DISTOR {{ $student->application->district }}
SECTOR {{ $student->application->sector }}
CELL {{ $student->application->cell }}
NID {{ $student->application->nid }}
PASSPORT {{ $student->application->passportnumber }}
ACTUAL EMPLOYMENT {{ $student->application->actualemployment }}
EMPLOYMENT ADDRESS {{ $student->application->employmentaddress }}
LAST HLE {{ $student->application->lasthle }}
LAST HLE ADDRESS {{ $student->application->lasthleaddress }}
LAST SECONDARY SCHOOL {{ $student->application->lastsecondaryschool }}
COMPLETION DATE {{ $student->application->completiondate }}
SECTION/COMBINATION {{ $student->application->sectioncombination }}
MARKS {{ $student->application->marks }}
MARKS PER MAJOR {{ $student->application->markspermajor }}
COURSE {{ $student->application->course->name }}
ALTERNATIVE COURSE {{ $student->application->alternativecourse }}
ATTENDED UG BEFORE ?sdjfksdj {{ $student->application->attendedugbefore?'YES':'NO' }}
IF YES WHEN ? {{ $student->application->ifyeswhen }}
EXISTING REG NUMBER {{ $student->application->existingregnumber }}
REG/NUMBER {{ $student->application->regnumber }}
SELECTION STATUS {{ $student->application->selectionstatus->name }}
SUBMITTED ? {{ $student->application->submissionstate?'YES':'NO' }}
APPL-STEPS {{ $student->application->applicationsteps->name }}
APPL-SESSION {{ $student->application->entrysession->name }}
GARDIAN NAMES {{ $student->application->gardiannames }}
GARDIAN PHONE {{ $student->application->gardianphone }}
GARDIAN ADDRESS {{ $student->application->gardianaddress }}
APPLICATION CREATED AT {{ $student->application->created_at }}
UPDATED AT {{ $student->application->updated_at }}
@else NO APPLICATION @endif

BRANCHES

@if ($student->application!=NULL)
@forelse ($student->studentbranch as $studentbranch) @empty @endforelse
#BranchCourse
# {{ $studentbranch->branch->name }} {{ $studentbranch->branch->course->name }}
NO BRANCHES
@else NO BRANCHES @endif

REQUIRED DOCUMENTS

@php $d=0; @endphp @forelse ($student->studentdocuments as $doc) @empty @endforelse
{{ ++$d }} {{ $doc->studentdoctype->name }} View
NO DOCUMENTS
Unload Application Registrations {{--@if ($student->application!=NULL) @if ($student->application->selectionstatus_id==2) @if ($student->registration)
@csrf Generate Reg#
@endif @endif @endif--}} @if ($student->application!=NULL) @if ($student->reggenerator) @else @if ($student->application->selectionstatus_id==2) @if ($student->application->existingregnumber) @if(!Str::contains(Str::upper($student->application->existingregnumber),'STD')) @if (Str::contains($student->application->existingregnumber,'/'))
@csrf {{-- --}}  Restore Reg# @endif @if (Str::contains($student->application->existingregnumber,'-'))
@csrf {{-- --}}  Restore Reg# @endif @endif @else
@csrf  Generate Reg# @endif @endif @endif @endif @if(Auth::user()->can('registrar') || Auth::user()->can('registrar-sassistant')) @if($student->application!=NULL && $student->application->selectionstatus->selectionstatus_id < 2) Approve Application Reject Application Step Back @endif @if ($student->application!=NULL) Edit Account Edit Application @endif @if($student->application!=NULL && $student->application->selectionstatus->selectionstatus_id == 2 /*&&Str::contains($student->application->regnumber,['UG'])*/) Undo to In-Progress Subscribe to a Branch Register Me @endif @if($student->application!=NULL && $student->application->selectionstatus->selectionstatus_id == 3) Undo to In-Progress @endif @endif Transcripts
@endif