@extends('layouts.master') @section('title', __('Profile Visibility Setting')) @section("content")

{{ __('Personal Details') }}

@php $personalfields = [ 'first_name' => 'First Name', 'last_name' => 'Last Name', 'company_name' => 'Company Name', 'email' => 'Email', 'dob' => 'Date Of Birth', 'language' => 'Language', 'gender' => 'Gender', 'phone_no' => 'Phone No', ]; @endphp @foreach ($personalfields as $fieldKey => $label) @endforeach
{{ $label }}

{{ __('Address Details') }}

@php $addressfields = [ 'address1' => 'House Number And Street', 'address2' => 'Address Line 2', 'country' => 'Country', 'state' => 'Region / State / Province', 'city' => 'City', 'postcode' => 'Postcode / ZIP Code', ]; @endphp @foreach ($addressfields as $fieldKey => $label) @endforeach
{{ $label }}

{{ __('Statics Overview') }}

@php $otherfields = [ 'total_deposit' => 'Total Deposit', 'total_withdrawal' => 'Total Withdrawal', 'total_purchase' => 'Total Purchase', 'total_gift_code' => 'Total Gift Codes', 'redeem_gift_code' => 'Redeemed Gift Codes', 'bussiness_license' => 'BL Expired At', ]; $otherFieldChunks = array_chunk($otherfields, 2, true); @endphp @foreach ($otherFieldChunks as $chunk) @foreach ($chunk as $fieldKey => $label) @endforeach @endforeach
{{ $label }}

{{ __('Statics Details') }}

@php $staticfields = [ 'total_member' => 'Total Members', 'active_member' => 'Active Members', 'total_bv' => 'Total BV', 'total_sales_volume' => 'Total Sales Volume', 'tsv' => 'TSV Of All Other Legs', 'last_week_commission' => 'Last Week Commission', ]; $staticFieldChunks = array_chunk($staticfields, 2, true); @endphp @foreach ($staticFieldChunks as $chunk) @foreach ($chunk as $fieldKey => $label) @endforeach @endforeach
{{ $label }}

{{ __('Career Details') }}

@php $careerfields = [ 'current_rank' => 'Current Rank', 'customer_level' => 'Customer Level', 'uni_level' => 'Uni-level Status', 'placement_sponsor' => 'Your Placement Sponsor', ]; $careerFieldChunks = array_chunk($careerfields, 2, true); @endphp @foreach ($careerFieldChunks as $chunk) @foreach ($chunk as $fieldKey => $label) @endforeach @endforeach
{{ $label }}
@endsection @push('scripts') @endpush