@extends('backend.layouts.grid') @section('section', admin_trans('Earnings')) @section('title', admin_trans('Earnings Records')) @section('container', 'container-max-xxl') @section('content') @if (count($dates) > 0)
| {{ admin_trans('ID') }} | {{ admin_trans('User') }} | {{ admin_trans('IP Address') }} | {{ admin_trans('Country') }} | {{ admin_trans('Payout Rate') }} | {{ admin_trans('Earnings') }} | {{ admin_trans('Source') }} | {{ admin_trans('Referer domain') }} | {{ admin_trans('Status') }} | {{ admin_trans('Status Reason') }} | |
|---|---|---|---|---|---|---|---|---|---|---|
| #{{ $record->id }} | {{ $record->user->username }} | @if (!demoMode()) @if ($record->ip) {{ shorterText($record->ip, 20) }} @else -- @endif @else {{ admin_trans('Hidden in demo') }} @endif | {{ $record->country ?? '--' }} | {{ $record->payout_rate ? priceSymbol($record->payout_rate) : '--' }} | {{ earnings($record->earnings) }} | {{ ucfirst($record->earning_source) }} | {{ $record->referer_domain ?? '--' }} | @if ($record->isValid()) {{ admin_trans('Valid') }} @else {{ admin_trans('Invalid') }} @endif | {{ $record->status_reason ?? '--' }} |