@extends('app') @section('content') @include('layout.header') @include('components.loader')
Welcome, {{ $authUser->first_name }}@if($authUser->last_name) {{ ' ' . $authUser->last_name }}@endif!
{{ $authUser->apps_sales_goal ?? 0 }}
App Sales Goal
${{ number_format($availableWalletBalance ?? 0, 2, '.', ',') ?: '0.00' }}
Available Wallet Balance
Print Leave Behind Here
Influencer's / Participant's list
| S.No | Name | 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) }} |