@if($user->image) @if(cloudStorageExist() && in_array(Storage::getDefaultDriver(), ['s3', 'cloudFlareR2', 'wasabi'])) {{ __('profile img') }} @else {{ __('profile img') }} @endif @if(moduleExists('FreelancerLevel')) @if(get_static_option('profile_page_badge_settings') == 'enable')
{!! freelancer_level($user->id,'talent') ?? '' !!}
@endif @endif @else {{ __('AuthorImg') }} @if(moduleExists('FreelancerLevel')) @if(get_static_option('profile_page_badge_settings') == 'enable')
{!! freelancer_level($user->id,'talent') ?? '' !!}
@endif @endif @endif

{{ $user->first_name .' '.$user->last_name }}@if(moduleExists('FreelancerLevel')){{ freelancer_level($user->id) }}@endif @if(Cache::has('user_is_online_' . $user->id)) {{ __('Active') }} @else {{ __('Inactive') }} @endif

{{ optional($user->user_introduction)->title ?? '' }} @if($user->user_verified_status == 1) @endif {!! freelancer_rating_for_profile_details_page($user->id) !!}
@if($user->check_work_availability == 1) {{ __('Available for Work') }} @endif @if(Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 2 && Auth::guard('web')->user()->username==$username)
@endif
@if($user?->user_country?->country)
@if(moduleExists('HourlyJob')) @if($user->hourly_rate >= 1)

{{ amount_with_currency_symbol($user->hourly_rate ?? '') }} {{ __('hour') }}

@if(Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 2 && Auth::guard('web')->user()->username==$username) @endif
@endif @endif
@if($user?->user_state?->state != null) {{ optional($user->user_state)->state }}, @endif {{ optional($user->user_country)->country }}
@if(!empty($user->user_state->timezone))
@php if(!empty($user->user_state->timezone)){ date_default_timezone_set(optional($user->user_state)->timezone ?? ''); echo date('h:i:a'); } @endphp ({{ __('Local Time') }})
@endif
@endif @if($user?->user_introduction?->description)

{{ __('About Me') }}

{{ optional($user->user_introduction)->description ?? '' }}

@endif @if(Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 2 && Auth::guard('web')->user()->username==$username)
@if(moduleExists('PromoteFreelancer')) @php $current_date = \Carbon\Carbon::now()->toDateTimeString(); $is_promoted = \Modules\PromoteFreelancer\Entities\PromotionProjectList::where('identity',auth()->user()->id) ->where('type','profile') ->where('expire_date','>',$current_date) ->where('payment_status','complete') ->first(); @endphp @if(!empty($is_promoted)) @else {{ __('Promote Profile') }} @endif @endif
@endif
@if(moduleExists('PromoteFreelancer')) @include('frontend.profile-details.promotion.project-promote-modal') @endif