@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 (Auth::guard('web')->check())
@if (Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 1 && Auth::guard('web')->user()->id != $user->id && Session::get('user_role') != 'freelancer' && optional($record)->can_contact_freelancer == 1)
@elseif (Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 2 && Auth::guard('web')->user()->id != $user->id && Session::get('user_role') == 'client' && optional($record)->can_contact_freelancer == 1)
@endif
@else
@if(!empty($record->can_contact_freelancer) && optional($record)->can_contact_freelancer == 1 && optional($record)->show_contact_me_before_login == 1)
{{ __('Contact Me') }}
@endif
@endif
@endif
@if(Auth::guard('web')->check() && Auth::guard('web')->user()->user_type == 2 && Auth::guard('web')->user()->username==$username)