@extends('layouts.app') @section('title')Scandia IT: {{ $user->name }}'s CV @endsection @section('description'){{ getFirstName($user->name) }}, {{ $profile ? $profile['job_title'] : ""}} @endsection @section('content')

{{ getFirstName($user->name) }}

{{ $profile ? $profile['job_title'] : ""}}
@if ($profile) @php $rank = emp_ranking($profile['total_exp']) @endphp @if($rank == 'AAA') @php $badge_style = "badge badge-success" @endphp @elseif($rank == 'AA') @php $badge_style = "badge badge-primary" @endphp @else @php $badge_style = "badge badge-warning" @endphp @endif @else @php $badge_style = "badge badge-warning" @endphp @php $rank = emp_ranking($profile['total_exp']) @endphp {{--Rating: {{ $rank }}
--}} @endif
@if(empty($profile->photo)) @else @endif

{{ getFirstName($user->name) }} {{ $rank }}

{{ $profile ? $profile['job_title'] : ""}}

{{ $profile ? $profile['overview'] : "" }}

Technologies: @foreach($user->skills as $skill) @if($loop->index < 12) {{ $skill->skill }}, @endif @endforeach


@if(!empty($user->skills->toArray()))

Years of Experience

@foreach($user->skills as $skill) @if($loop->index < 12)
{{ $skill->skill }}
{{$skill->pivot->user_skill_exp}} years
@endif @endforeach
@endif @if(!empty($user->educations->toArray()))

Education

    @foreach($user->educations as $educations) @if($loop->index < 6)
  • {{$educations->course}} - {{$educations->year}}
    {{$educations->school}}
  • @endif @endforeach
@endif @if(!empty($user->strengths->toArray()))

Strengths

    @foreach($user->strengths as $strength) @if($loop->index < 6)
  • {{ $strength->strength }}
  • @endif @endforeach
@endif @if(!empty($user->milestones->toArray()))

Main focus

    @foreach($user->milestones as $milestones) @if($loop->index < 6)
  • {{$milestones->milestone}}
  • @endif @endforeach
@endif @if($profile['availability']!='')

Availability

  • {{ $profile['availability'] }}
@endif @if(!empty($user->skills->toArray()))

Preferred technologies

    @foreach($user->skills as $skill) @if($loop->index < 4)
  • {{ $skill->skill }}
  • @endif @endforeach
@endif @if(!empty($user->works->toArray()))

Work experience

    @foreach($user->works as $work)
  • {{ $work->position }} | {{ $work->company }} | {{ $work->year }}
  • {!! $work->description !!}
    @endforeach
@endif @if($profile['qoute']!='')

Favorite quote

{{ $profile['qoute'] }}

{{--by someone
--}}
@endif
    {{----}} {{--Get PDF--}} {{----}} {{----}} {{--Email--}}
@endsection