@extends($activeTemplate . 'layouts.master') @section('content')
@lang('Total Earnings')

{{ gs('cur_sym') }}{{ showAmount($totalEarnings, currencyFormat: false) }}

@lang('Revenue from Ads')

{{ gs('cur_sym') }}{{ showAmount($adsEarnings, currencyFormat: false) }}

@lang('Stock Video sales')

{{ gs('cur_sym') }}{{ showAmount($stockVideoEarnings, currencyFormat: false) }}

@lang('Earnings from Playlists')

{{ gs('cur_sym') }}{{ showAmount($playlistEarnings, currencyFormat: false) }}

@lang('Earnings from Monthly Plan')

{{ gs('cur_sym') }}{{ showAmount($planEarnings, currencyFormat: false) }}

@lang('Commission Paid to Admin')

{{ gs('cur_sym') }}{{ showAmount($adminCommission, currencyFormat: false) }}

@lang('Earnings Report')
 

@lang('Recenet Earnings')

@lang('See All')
@forelse($earnings as $trx) @empty @endforelse
@lang('Trx') @lang('Transacted') @lang('Amount') @lang('Post Balance') @lang('Detail')
{{ $trx->trx }} {{ showDateTime($trx->created_at) }}
{{ diffForHumans($trx->created_at) }}
{{ $trx->trx_type }} {{ showAmount($trx->amount) }} {{ showAmount($trx->post_balance) }} {{ __($trx->details) }}
@include("Template::partials.empty")
@endsection @push('script-lib') @endpush @push('style-lib') @endpush @push('script') @endpush