@extends('backend.index') @section('content')
@if($dashboard->server->max_execution_time < 300) @endif @if(! function_exists( 'simplexml_load_file' )) @endif @if(! extension_loaded('exif')) @endif @if(! extension_loaded('fileinfo')) @endif @if($dashboard->server->post_max_size < 128) @endif @if($dashboard->server->upload_max_filesize < 128) @endif @if($dashboard->server->memory_limit < 32) @endif
@if(\App\Models\Role::getValue('admin_songs'))
{{ $dashboard->total_songs }} Songs
View Details
@endif @if(\App\Models\Role::getValue('admin_artists'))
{{ $dashboard->total_artists }} Artists
View Details
@endif @if(\App\Models\Role::getValue('admin_albums'))
{{ $dashboard->total_albums }} Albums
View Details
@endif @if(\App\Models\Role::getValue('admin_playlists'))
{{ $dashboard->total_playlists }} Playlists
View Details
@endif @if(\App\Models\Role::getValue('admin_users'))
{{ $dashboard->statistics->total_users }} Users
View Details
@endif @if(\App\Models\Role::getValue('admin_subscriptions'))
{{ $dashboard->statistics->total_subscriptions }} Subscriptions
View Details
@endif @if(\App\Models\Role::getValue('admin_comments'))
{{ $dashboard->statistics->total_comments }} Comments
View Details
@endif @if(\App\Models\Role::getValue('admin_posts'))
{{ $dashboard->statistics->total_posts }} Posts
View Details
@endif @if(\App\Models\Role::getValue('admin_earnings'))
{{ $stats->revenue }} {{ config('settings.currency', 'USD') }}

Total Revenue

{{ $stats->commission }} {{ config('settings.currency', 'USD') }}

Artist's Commission

{{ $stats->song->revenue }} {{ config('settings.currency', 'USD') }}

Songs Sales

{{ $stats->song->count }} items

{{ $stats->album->revenue }} {{ config('settings.currency', 'USD') }}

Albums Sales

{{ $stats->album->count }} items

@endif

You are using an outdated build version of the script, the version you are using: {{ env('APP_VERSION') }}

At the moment, a new build of the script is available:

This version is a beta release and may contain elements that have not been fully tested. It is provided without warranty of any kind either express or implied. If you don't want to be a beta tester, please kindly wait for stable version which will be release soon.

To update your site to the latest version, you need to follow the link: Upgrade Music Engine

You can view information about the new version of the script at Music Engine

Quick access to site sections
@if(\App\Models\Role::getValue('admin_subscriptions'))
15 Days Earnings Overview
Get Full Report
Revenue Sources
@endif @if(config('settings.google_analytics'))
Streams per country this month
Streams per Age and Gender
Top browsers
Visitors
@endif
@if(\App\Models\Role::getValue('admin_subscriptions'))
Recent Orders
@foreach ($dashboard->subscriptions as $index => $order ) @if($order->user) @endif @endforeach
Customer Status Plan Billing Amount Created
{{ $order->user->name }} @if(\Carbon\Carbon::parse($order->trial_end)->gt(\Carbon\Carbon::now())) Trial ends {{ \Carbon\Carbon::parse($order->trial_end)->format('F j') }} @elseif(\Carbon\Carbon::parse($order->next_billing_date)->gt(\Carbon\Carbon::now())) Active @else in-Active @endif {{ $order->service->title }} Auto {{ __('symbol.' . $order->currency) }}{{ number_format($order->amount) }} {{ timeElapsedString($order->created_at) }}
@endif @if(\App\Models\Role::getValue('admin_users'))
Recent Users
@foreach($dashboard->recentUsers as $user)
{{ $user->name }}

{{ $user->email }} {{ timeElapsedString($user->created_at) }}

@endforeach
@endif @if(\App\Models\Role::getValue('admin_posts'))
Recent posts
@foreach($dashboard->recentPosts as $post)
{{ $post->title }}

by {{ $post->uname }}{{ timeElapsedString($post->created_at) }}

@endforeach
@endif
@if(\App\Models\Role::getValue('admin_settings'))
Operation Status of the website {!! $dashboard->statistics->system_status !!}
Site url {{ $dashboard->statistics->site_url }}
The total number of news articles {{ $dashboard->statistics->total_posts }}
News awaiting for verification {{ $dashboard->statistics->awaiting_posts }}
Total comments: {{ $dashboard->statistics->total_comments }}
Comments that are awaiting for moderation {{ $dashboard->statistics->awaiting_comments }}
Registered users {{ $dashboard->statistics->total_users }}
Banned users {{ $dashboard->statistics->banned_users }}
The total number of artists {{ $dashboard->statistics->total_artists }}
Artists that are awaiting for moderation {{ $dashboard->statistics->awaiting_artists }}
{!! $dashboard->information !!}
@endif @endsection