@extends('layouts.master')
@section('title',__('Dashboard'))
@section('maincontent')
@section('breadcum')
@can('dashboard.states')
{{$users_count}}
{{ __('Users') }}
{{ $activeusers }}
{{ __('Total Active Users') }}
{{$movies_count}}
{{ __('Total Movies') }}
{{$tvseries_count}}
{{__('Total Tv Serieses')}}
{{$livetv_count}}
{{__('Total Live Tv')}}
{{$package_count}}
{{__('Total Packages')}}
{{$coupon_count}}
{{__('Total Coupons')}}
{{$genres_count}}
{{__('Total Genres')}}
{{$movieslw}}
{{ __('Top 10 Movies') }}
{{--
{{$seasonlw}}
{{ __('Top 10 Seasons') }}
--}}
{!! $activesubsriber->container() !!}
{!! $piechart->container() !!}
{{ __('#') }} |
{{__('Payment ID')}} |
{{__('UserName')}} |
{{__('Payment Method')}} |
{{__('Paid Amount')}} |
{{__('Subscription From')}} |
{{__('Subscription To')}} |
@if ($revenue_report)
@foreach ($revenue_report as $key => $report)
{{$key+1}} |
{{$report->payment_id}} |
{{ucfirst($report->user_name)}} |
{{$report->method}} |
{{$report->price}} |
{{$report->subscription_from}} |
{{$report->subscription_to}} |
@endforeach
@endif
{!! $doughnutchart->container() !!}
{!! $userchart->container() !!}
{!! $revenue_chart->container() !!}
@endcan
@endsection
@section('script')
{!! $userchart->script() !!}
{!! $activesubsriber->script() !!}
{!! $piechart->script() !!}
{!! $doughnutchart->script() !!}
{!! $revenue_chart->script() !!}
@endsection