Profile Completion Status
{{-- ------------------------------------------ --}}
@php
$profileStatus=82;
if(!empty(Auth::user()->profile_photo_path)){$profileStatus+=5;}
if(@$partnerBio){$profileStatus+=5;}
$financialInformationValue=0;
if(@$data['face_to_face_field_sales']){$financialInformationValue++;}
if(@$data['telephone_based_consultative_sales_resources']){$financialInformationValue++;}
if(@$data['via_internet_with_limited_human_interference']){$financialInformationValue++;}
if(@$data['total_number_of_employees']){$financialInformationValue++;}
if(@$data['total_number_of_sales_employees']){$financialInformationValue++;}
if(@$data['total_number_of_services']){$financialInformationValue++;}
if(@$data['total_number_of_technical_support_employees']){$financialInformationValue++;}
if(@$data['total_number_of_marketing_employees']){$financialInformationValue++;}
$profileStatus= $profileStatus+$financialInformationValue;
@endphp