@extends('layouts.core.backend', [
'menu' => 'dashboard',
])
@section('title', trans('messages.dashboard'))
@section('head')
@endsection
@section('content')
@if (config('custom.japan') && !empty(trans('messages.dashboard.notice')))
{!! trans('messages.dashboard.notice') !!}
@endif
{{ trans('messages.backend_dashboard_hello', ['name' => Auth::user()->admin->displayName()]) }}
{{ trans('messages.backend_dashboard_welcome') }}
E-Marketing1, is one of the products by GJTECH SOFT . If you are watching this demo, the seller of this software is
Gyanendu Jigyasa . Don't trust anyone’s words. Even if they tell you something, first watch the demo and if you like this software, contact
Gyanendu Jigyasa directly.
📞 Call or WhatsApp:
+91-9106014883
E-Marketing1 , GJTECH SOFT के उत्पादों में से एक है। यदि आप यह डेमो देख रहे हैं, तो इस सॉफ़्टवेयर के विक्रेता
ज्ञानेंदु जिज्ञासा हैं। किसी की बातों पर भरोसा न करें। भले ही कोई आपको कुछ भी बताए, पहले डेमो देखें और यदि यह सॉफ़्टवेयर आपको पसंद आए, तो सीधे
ज्ञानेंदु जिज्ञासा से संपर्क करें।
📞 कॉल या व्हाट्सएप करें:
+91-9106014883
There is no one in my team who is authorized to sell this software except me. If anyone tells you that they are part of my team or that I have given them the rights,
do not believe them . Always contact
Gyanendu Jigyasa directly.
📞 Contact:
+91-9106014883
मेरी टीम में मेरे अलावा कोई भी व्यक्ति इस सॉफ़्टवेयर को बेचने के लिए अधिकृत नहीं है । यदि कोई आपको कहे कि वह मेरी टीम में है या मैंने उसे अधिकार दिया है, तो
उसकी बात पर विश्वास न करें । हमेशा सीधे
ज्ञानेंदु जिज्ञासा से संपर्क करें।
📞 संपर्क:
+91-9106014883
💰 Source Code Price: ₹15,000 / $200 USD
@include('admin.notifications._top', ['notifications' => $notifications])
people_outline {{ trans('messages.customers_growth') }}
@include('admin.customers._growth_chart')
assignment_turned_in {{ trans('messages.plans_chart') }}
@include('admin.plans._pie_chart')
assignment_turned_in
{{ trans('messages.recent_subscriptions') }}
{!! trans('messages.admin.dashboard.recent_subscriptions.wording', [ 'here' => action('Admin\SubscriptionController@index') ]) !!}
@forelse (Auth::user()->admin->recentSubscriptions() as $subscription)
person_outline
{{ $subscription->customer->displayName() }}
@if ($subscription->isEnded())
{{ Auth::user()->admin->formatDateTime($subscription->current_period_ends_at, 'datetime_full') }}
{{ trans('messages.subscription.ended_on') }}
@elseif ($subscription->isActive())
{{ Auth::user()->admin->formatDateTime($subscription->current_period_ends_at, 'datetime_full') }}
{{ trans('messages.subscription.ends_on') }}
@else
{{ Auth::user()->admin->formatDateTime($subscription->updated_at, 'datetime_full') }}
{{ trans('messages.subscription.updated_at') }}
@endif
{{ trans('messages.subscription.status.' . $subscription->status) }}
@empty
{{ trans('messages.empty_record_message') }}
@endforelse
people_outline
{{ trans('messages.recent_customers') }}
{!! trans('messages.admin.dashboard.recent_customers.wording', [ 'here' => action('Admin\CustomerController@index') ]) !!}
@forelse(Auth::user()->admin->recentCustomers() as $customer)
{{ $customer->user->email }}
{{ Auth::user()->admin->formatDateTime($customer->created_at, 'datetime_full') }}
{{ trans('messages.created_at') }}
@empty
{{ trans('messages.empty_record_message') }}
@endforelse
restore
{{ trans('messages.activities') }}
{!! trans('messages.admin.dashboard.recent_activity.wording', [ 'here' => action('Admin\CustomerController@index') ]) !!}
@if (\Auth::user()->admin->getLogs()->count() == 0)
history_toggle_off
{{ trans('messages.no_activity_logs') }}
@else
@foreach (\Auth::user()->admin->getLogs()->take(20)->get() as $log)
{{ $log->customer->displayName() }}
history
{{ $log->created_at->timezone($currentTimezone)->diffForHumans() }}
{!! $log->message() !!}
@endforeach
@endif
running_with_errors {{ trans('messages.resources_statistics') }}
{{ trans('messages.resources_statistics_intro') }}
people_outline {{ trans('messages.customers') }}
{{ Auth::user()->admin->getAllCustomers()->count() }}
assignment_turned_in {{ trans('messages.subscriptions') }}
{{ Auth::user()->admin->getAllSubscriptions()->count() }}
assignment_turned_in {{ trans('messages.plans') }}
{{ Auth::user()->admin->getAllPlans()->count() }}
contact_mail {{ trans('messages.lists') }}
{{ Auth::user()->admin->getAllLists()->count() }}
people_outline {{ trans('messages.subscribers') }}
{{ number_with_delimiter($subscribersCount) }}
manage_accounts {{ trans('messages.admins') }}
{{ Auth::user()->admin->getAllAdmins()->count() }}
people {{ trans('messages.admin_groups') }}
{{ Auth::user()->admin->getAllAdminGroups()->count() }}
dns {{ trans('messages.sending_servers') }}
{{ Auth::user()->admin->getAllSendingServers()->count() }}
public {{ trans('messages.sending_domains') }}
{{ $sendingDomainsCount }}
forward_to_inbox {{ trans('messages.campaigns') }}
{{ Auth::user()->admin->getAllCampaigns()->count() }}
schedule {{ trans('messages.automations') }}
{{ number_with_delimiter($automationsCount) }}
@endsection