@extends('templates.popup_template_forms') @section('content')

CV ID: QED00{{ $CV->id }}

Discipline: {{$CV->Field->title}}

Nationality: {{$CV->nationality}}

CAREER OBJECTIVE

{{$CV->objective}}

SKILLS

    @foreach( $CV->Skills as $skill)
  • {{$skill->skill}}
  • @endforeach

WORK EXPERIENCE

@foreach( $experience as $exp)
Company: {{$exp->organization}}
Position: {{$exp->role}}
Date: {{$exp->duration}}
Duties:

    {!!$exp->duties!!}

@endforeach

EDUCATION

    @foreach( $education as $edu)
  • {{$edu->achievement }} - {{$edu->body}} - {{$edu->duration}}
  • @endforeach

CERTIFICATION

      @foreach( $certifications as $cert)
    • {{$cert->certification }} - {{$cert->body}} - Issued: {{$cert->issue_date}}- Expires: {{$cert->expiration_date}}
    • @endforeach

PROJECTS

@foreach( $projects as $p)
Title: {{$p->title}}
Duration: {{$p->duration}}
Achievement:

    {!!$p->achievements!!}

@endforeach

REFEREE

      @foreach( $referees as $r)
    • {{$r->fullname }} - {{$r->email}} - {{$r->mobile}}- {{$r->address}}
    • @endforeach
@endsection @push('scripts') @endpush