Family Background

@if($family)
@foreach ($family as $fam) @if($fam->is_emergency) @else @endif @endforeach
Emergency Name Occupation Contact Number Date of Birth Relationship Address Action
{{ $fam->name }} {{ $fam->occupation }} {{ $fam->contact_number }} {{ $fam->date_of_birth }} {{ $fam->relationship }} {{ $fam->address }}
@endif

Educational Background

@if($family)
@foreach ($educational as $educ) @if($educ->is_graduated) @else @endif @endforeach
School Level School Name Course/Program Year Graduated Awards Action
{{ $educ->educational_level }} {{ $educ->school_name }} {{ $educ->course_program }} {{ $educ->year }}
AWARDS @if(count($educ->awards) > 0)
    @foreach ($educ->awards as $award)
  • {{ $award->award_name }}
  • @endforeach
@else

(No Awards)

@endif
@endif

Employment History

@if($employmenthistory)
@foreach ($employmenthistory as $employh) @endforeach
Company Name Designation From To Reasons for leaving Action
{{ $employh->company_name }} {{ $employh->designation }} {{ $employh->year_from }} {{ $employh->year_to }} {{ $employh->leaving_reasons }}
@endif

Character Reference

@if($characterreference)
@foreach ($characterreference as $charref) @endforeach
Name Contact Number Designation Company Company Address Action
{{ $charref->name }} {{ $charref->contact_number }} {{ $charref->designation }} {{ $charref->company }} {{ $charref->company_address }}
@endif

Banking Information

@if($bankinginformation)
@foreach ($bankinginformation as $charref) @endforeach
Name Account Name Account Number Action
{{ $charref->bank_name }} {{ $charref->account_name }} {{ $charref->account_number }}
@endif