@extends('index') @section('content') @include('artist-management.nav', ['artist' => $artist])

{{ __('symbol.' . config('settings.currency', 'USD')) }}{{ $songs_revenue->total ? $songs_revenue->total : 0}}

{{ thousandsCurrencyFormat(intval($songs_revenue->count)) }} streams

{{ __('symbol.' . config('settings.currency', 'USD')) }}{{ $episodes_revenue->total ? $episodes_revenue->total : 0 }}

{{ thousandsCurrencyFormat(intval($episodes_revenue->count)) }} streams

{{ thousandsCurrencyFormat(\App\Models\Order::where('user_id', auth()->user()->id)->count()) }}

{{ __('web.SALES') }}

{{ thousandsCurrencyFormat(intval($counts->playSong)) }}

{{ __('web.PLAYS') }}

{{ thousandsCurrencyFormat(intval($counts->favoriteSong)) }}

{{ __('web.FAVORITES') }}

{{ thousandsCurrencyFormat(intval($counts->collectSong)) }}

{{ __('web.COLLECTORS') }}

15-day statics chart

@if(count($songs))

{{ __('web.TOP_PERFORMING_CONTENT') }}

@foreach($songs as $song)
@endforeach
@endif
@endsection