Account Info
|
First Name |
{{ auth()->user()->fname }} |
Middle Name |
{{ auth()->user()->mname }} |
Last Name |
{{ auth()->user()->lname }} |
E-Mail |
{{ auth()->user()->email }} |
Created-At |
{{ auth()->user()->created_at }}
|
Password Reset
Profile
@if (auth()->user()->staffprofile && auth()->user()->staffprofile != NULL)
ADDITIONAL DETAILS |
DOB |
{{ auth()->user()->staffprofile->dob }} |
POB |
{{ auth()->user()->staffprofile->birthplace }} |
SEX |
{{ auth()->user()->staffprofile->sex->name }} |
MARITAL |
{{ auth()->user()->staffprofile->marital->name }} |
COUNTRY |
{{ auth()->user()->staffprofile->country->name }} |
PERMANENT ADDRESS |
{{ auth()->user()->staffprofile->parmanentaddress }} |
CURRENT ADDRESS |
{{ auth()->user()->staffprofile->currentaddress }} |
NID |
{{ auth()->user()->staffprofile->nid }} |
PHONE |
{{ auth()->user()->staffprofile->phone }} |
ALT-PHONE |
{{ auth()->user()->staffprofile->alternative_phone }} |
PHOTO |
|
@else
Your profile is required!
@endif
Education
@if(auth()->user()->staffeducation->count()>0)
STAFF EDUCATION |
# |
EDUCATION |
START-DATE |
CLOSING-DATE |
COMPLETED |
@foreach (auth()->user()->staffeducation as $index=>$se)
{{ ++$index }} |
{{ $se->staffeducationtype->name }} |
{{ $se->startdate }} |
{{ $se->closingdate }} |
{{ $se->completed?'YES':'NO' }} |
@endforeach
@else
Empty! Action required!
@endif
Documents
@if(auth()->user()->staffdocument->count()>0)
STAFF DOCUMENT |
# |
DOC-TYPE |
VIEW |
CREATED AT |
@foreach (auth()->user()->staffdocument as $index=>$sd)
{{ ++$index }} |
{{ $sd->staffdoctype->name }} |
View |
{{ $sd->created_at }} |
@endforeach
@else
Empty! Action required!
@endif
Expertise
@if(auth()->user()->staffexpertise->count()>0)
STAFF EXPERTISE |
# |
JOB-TITLE |
JOB LOCATION |
START-DATE |
CLOSING-DATE |
@foreach (auth()->user()->staffexpertise as $index=>$se)
{{ ++$index }} |
{{ $se->jobtitle }} |
{{ $se->joblocation }} |
{{ $se->start }} |
{{ $se->closingdate }} |
@endforeach
@else
Empty! Action required!
@endif
Departments
@if(auth()->user()->staffdepartment->count()>0)
STAFF DEPARTMENT |
# |
DEPARTMENT |
OCCUPATION |
ACTIVE |
CREATED AT |
@foreach (auth()->user()->staffdepartment as $index=>$sd)
{{ ++$index }} |
{{ $sd->department->name }} |
{{ $sd->occupation->name }} |
{{ $sd->active?'YES':'NO' }} |
{{ $sd->created_at }} |
@endforeach
@else
Empty! Action required!
@endif