@php
$order = $paymentVerifyCheck;
@endphp
@if($order->status != 3)
@if(!empty($order?->job->hourly_rate) && $order->is_fixed_hourly == 'hourly')
@if($order?->job?->job_creator?->user_wallet?->balance >= ($order?->job->hourly_rate * $order?->job->estimated_hours) )
{{ __('Verified') }}
@else
{{ __('Not Verified') }}
@endif
@endif
@endif