@if (count($casino_players) > 0)
{{ __('Aggregator ID') }} | {{ __('External ID') }} | {{ __('Partner Name') }} | {{ __('Skin Name') }} | {{ __('Username') }} | {{ __('Affiliate') }} | {{ __('Provider') }} | {{ __('Rounds') }} | {{ __('Currency') }} | {{ __('Country') }} | {{ __('Bet') }} | {{ __('Win') }} | {{ __('GGR') }} | @if (getenv('APP_MARKET') == 'it'){{ __('Bingo Fee') }} | @endif{{ __('AVG Bet') }} | {{ __('Bonus BET ') }} | {{ __('Bonus WIN') }} | {{ __('Bonus Cost') }} | {{ __('Rake') }} | @if ($time_range != 2){{ __('Last activity') }} | @else{{ __('First activity') }} | @endif @if ($game_category){{ __('Category') }} | @endif @if ($break_by){{ strtoupper($break_by) }} | @endif|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ $row->uid }} | {{ $row->operator_id }} | {{ $row->partner_name }} | {{ !empty($row->skin_name) ? $row->skin_name : '' }} | {{ $row->extern_username }} | @if ($row->level) {{ __('VIP') }} @endif | {{ $row->affiliate }} | {{ $row->provider_name }} | {{ $row->rounds }} | {{ $row->currency_name }} | {{ $row->country }} | {!! GetMoneyStr3($row->bet, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->win, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->GGR, true, $row->currency_id, true) !!} | @if (getenv('APP_MARKET') == 'it'){!! GetMoneyStr3($row->bingo_fee, true, $row->currency_id, true) !!} | @endif{!! GetMoneyStr3($row->avg_bet, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->real_bonus_used, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->bonus_win, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->bonus_cost, true, $row->currency_id, true) !!} | {!! GetMoneyStr3($row->rake, true, $row->currency_id, true) !!} | {!! $row->last_activity !!} | @if ($game_category){!! $row->category_name !!} | @endif @if ($break_by){{ $row->groupedby }} | @endif|
@lang('Subtotal(:currency)', ['currency' => $currencyName]) | {{ $data->sum('rounds') }} | {!! GetMoneyStr3($data->sum('bet'), true, $data[0]->currency_id, true) !!} | {!! GetMoneyStr3($data->sum('win'), true, $data[0]->currency_id, true) !!} | {!! GetMoneyStr3($data->sum('GGR'), true, $data[0]->currency_id, true) !!} | @if (getenv('APP_MARKET') == 'it'){!! GetMoneyStr3($data->sum('bingo_fee'), true, $data[0]->currency_id, true) !!} | @endif{!! GetMoneyStr3( $data->sum('avg_bet') == 0 ? 0 : $data->sum('avg_bet') / count($data->whereNotNull('avg_bet')) ?? 0, true, $data[0]->currency_id, true, ) !!} | {!! GetMoneyStr3($data->sum('real_bonus_used'), true, $data[0]->currency_id, true) !!} | {!! GetMoneyStr3($data->sum('bonus_win'), true, $data[0]->currency_id, true) !!} | {!! GetMoneyStr3($data->sum('bonus_cost'), true, $data[0]->currency_id, true) !!} | {!! GetMoneyStr3($data->sum('rake'), true, $data[0]->currency_id, true) !!} | @if ($break_by)@endif |