{{-- resources/views/livewire/site/portfolio.blade.php --}}
{{-- HERO --}}
Portfólio Profissional
@if($profile->availability_status)
Disponível para novas oportunidades
@else
Não disponível no momento
@endif @php $parts = explode(' ', trim($user->name), 2); @endphp

{{ $parts[0] }}@isset($parts[1]) {{ $parts[1] }}@endisset

@if($profile->headline)

{{ $profile->headline }}

@endif
@if($profile->location) {{ $profile->location }}, Angola @endif @if($profile->years_experience) {{ $profile->years_experience }} anos de experiência @endif @if($user->phone) {{ $user->phone }} @endif @if($profile->username) {{ $profile->username }} @endif
@if($profile->profile_photo) {{ $user->name }} @elseif($user->photo) {{ $user->name }} @else
{{ strtoupper(substr($user->name,0,1)) }}
@endif
{{-- STATS BAR --}} @if($profile->years_experience || $profile->skills->count() || $profile->certifications->count() || $profile->experiences->count())
@if($profile->years_experience)
{{ $profile->years_experience }}
Anos de Exp.
@endif @if($profile->skills->count())
{{ $profile->skills->count() }}
Competências
@endif @if($profile->certifications->count())
{{ $profile->certifications->count() }}
Certificações
@endif @if($profile->experiences->count())
{{ $profile->experiences->count() }}
Experiências
@endif
@endif {{-- BODY --}}
{{-- Bio --}} @if($profile->bio)
Sobre Mim

{{ $profile->bio }}

@endif {{-- Experiência --}}
Experiência Profissional
@if($profile->experiences->isNotEmpty())
@foreach($profile->experiences as $exp)

{{ $exp->title ?? $exp->position ?? 'Cargo' }}

{{ $exp->company ?? $exp->organization ?? '—' }}

{{ $exp->start_date ? \Carbon\Carbon::parse($exp->start_date)->format('M. Y') : '?' }}  —  {{ $exp->end_date ? \Carbon\Carbon::parse($exp->end_date)->format('M. Y') : 'Presente' }}

@if($exp->description)

{{ $exp->description }}

@endif
@endforeach
@else

Nenhuma experiência registada.

@endif
{{-- Educação --}}
Formação Académica
@if($profile->educations->isNotEmpty())
@foreach($profile->educations as $edu)

{{ $edu->degree ?? $edu->course ?? 'Curso' }}

{{ $edu->institution ?? $edu->school ?? '—' }}

{{ $edu->start_date ? \Carbon\Carbon::parse($edu->start_date)->format('Y') : '?' }}  —  {{ $edu->end_date ? \Carbon\Carbon::parse($edu->end_date)->format('Y') : 'Presente' }}

@if($edu->description)

{{ $edu->description }}

@endif
@endforeach
@else

Nenhuma formação registada.

@endif