@extends('app') @section('content') @include('layout.header') @include('components.loader')
imageWithdraw Funds
@php $imagePath = 'organization_image/' . $organization->image; $imageUrl = null; if (Storage::exists('public/' . $imagePath) && $organization->image) { $imageUrl = asset('storage/' . $imagePath); } else { $imageUrl = Vite::asset('resources/images/profile_img.webp'); } @endphp Organization image
{{ $organization->name }} {{-- - {{ $authUser->cause }} --}} - {{ $organization->code . '-' . $authUser->personal_code }}

Welcome, {{ $authUser->first_name }}@if($authUser->last_name) {{ ' ' . $authUser->last_name }}@endif!

image

{{ $authUser->apps_sales_goal ?? 0 }}

App Sales Goal

Total Apps Sold - {{ ($appsSold ?? 0) + ($giftApp ?? 0) }}
image
Apps Bought - {{ $appsSold ?? 0 }}
Apps Gifted - {{ $giftApp ?? 0 }}
image
Total Sales - ${{ number_format(($payItForward ?? 0) + ($kickItBack ?? 0) + ($totalSales ?? 0), 2, '.', ',') ?: '0.00' }}
image
App Sales Amount - ${{ number_format($totalSales, 2, '.', ',') }}
Pay it Forward™ - ${{ number_format($payItForward ?? 0, 2, '.', ',') }}
Kick it Back™ - ${{ number_format($kickItBack ?? 0, 2, '.', ',') }}
image
App Sales Amount -
image
Yearly Subscription -
image

image

${{ number_format($availableWalletBalance ?? 0, 2, '.', ',') ?: '0.00' }}

Available Wallet Balance

Progress Bar
{{ $appsSold ?? 0 }} %

Total Apps Sold & Gifted

@if ($appsSold == 0 && $giftApp == 0)
No Subscription
@else
Yearly Subscriptions
@endif

Total Earnings

@if ($payItForward + $kickItBack + $totalSales == 0)
No Earnings
@else
Yearly Subscriptions
Pay It Forward™
Kick It Back™
@endif
Sales Training Area
{{-- --}}
{{-- print word document --}}
{{--

Print Leave Behind Here

--}}
{{-- profile details --}}
Profile Details
image
Title:
{{ $authUser->title ?? '' }}
image
Email :
image
Phone Number :
{{ $authUser->phone_number ?? '' }}
image
App Sales Goal :
{{ $authUser->apps_sales_goal ?? 0 }}
{{-- edit model --}}
{{-- change password model --}}
{{-- participant list table --}}

Influencer's / Participant's list

@foreach ($participantsList as $participantList) @endforeach
S.No Name Email Username Code Apps Sold Pay It Forward™ Kick It Back™
{{ $loop->iteration }} {{ $participantList->first_name . ' ' . $participantList->last_name }} {{ $participantList->email }} {{ $participantList->username }} {{ $participantList->code . ' - ' . $participantList->personal_code }} {{ $participantList->sponsor_payment_count }} ${{ number_format($participantList->total_pay_it_forward ?? 0, 2) }} ${{ number_format($participantList->total_kick_it_back ?? 0, 2) }}
{{-- invite participant --}} {{-- --}} {{-- notify to participant --}} {{-- notify to supporters --}}
@include('layout.footer') @Vite(['resources/js/validation.js']) @vite(['resources/js/admin_signup.js']) @vite(['resources/js/pages/admin.js']) @vite(['resources/js/city.js']) @vite(['resources/js/changepassword.js']) @vite(['resources/js/pagination.js']) @vite(['resources/js/progress_bar/admin_progress.js']) @vite(['resources/js/supporter_notification.js']) @endsection