@extends('layouts.app') @section('title', $user->name . ' - Freelancer Profile | Infra24') @section('content')

Freelancer Profile

@if($user->profile_photo) user-profile-image @else user-profile-image @endif
{{ $user->name }}

{{ $profile->title ?? 'Freelancer' }}

{{ $profile->location ?? 'Anywhere' }}
@if(($profile->availability ?? 'available') == 'available') Available for work @else Not available @endif
Hourly Rate
${{ $profile->hourly_rate ?? '0.00' }} / hr
Skills
@forelse($user->skills as $skill) {{ $skill->name }} @empty No skills listed. @endforelse
Bio

{{ $profile->bio ?? 'This freelancer has not written a bio yet.' }}

Portfolio
@forelse($user->portfolioItems as $item)
@if($item->url && !str_starts_with($item->url, 'http')) ... @elseif($item->url && str_starts_with($item->url, 'http'))

External Link
@else
No Image
@endif
{{ $item->title }}

{{ $item->description }}

@if($item->url && str_starts_with($item->url, 'http')) View Project @endif
@empty
No portfolio items available.
@endforelse
Work Experience

{{ $profile->experience ?? 'No experience details provided.' }}

Education

{{ $profile->education ?? 'No education details provided.' }}

@endsection