@extends('admin.layouts.app') @section('title', __('admin.affiliates.title_show') . ' - ' . ($affiliate->client?->first_name ?? '') . ' ' . ($affiliate->client?->last_name ?? '')) @section('content')
| {{ __('admin.affiliates.client_label') }} | {{ $affiliate->client?->first_name }} {{ $affiliate->client?->last_name }} ({{ $affiliate->client?->email }}) |
| {{ __('admin.affiliates.visitors_label') }} | {{ number_format($affiliate->visitors) }} |
| {{ __('admin.affiliates.balance_label') }} | ${{ number_format($affiliate->balance, 2) }} |
| {{ __('admin.affiliates.withdrawn_label') }} | ${{ number_format($affiliate->withdrawn, 2) }} |
| {{ __('admin.affiliates.referral_link') }} | {{ url('/') }}?ref={{ $affiliate->id }} |
| {{ __('common.table.date') }} | {{ __('common.table.description') }} | {{ __('common.table.amount') }} | {{ __('admin.affiliates.gateway') }} |
|---|---|---|---|
| {{ $tx->date?->format('d M Y H:i') ?? 'N/A' }} | {{ $tx->description }} | ${{ number_format(abs($tx->amount), 2) }} | {{ $tx->gateway }} |
| {{ __('admin.affiliates.no_referrals') }} | |||