@extends('master.back') @section('content')
@if(session()->has('multipledomain'))
One Purchase Code Use in multiple domain : @foreach (session()->get('multipledomain') as $item)

{{ $item }}

@endforeach
{{ __('Envato not allow to install script multiple domin using one purchase code. ') }}
{{ __('One purched codes for one Domin. Author can take action any time for that.') }}

{{ __('Author Contact : geniusdevs24@gmail.com') }}
@endif

{{ __('Dashboard') }}

@include('alerts.alerts')

{{ __('Total Orders') }}

{{ $totalOrders }}

{{ __('Pending Orders') }}

{{ $totalPendingOrders }}

{{ __('Delivered Orders') }}

{{$totalDeliveredOrders}}

{{ __('Canceled Orders') }}

{{$totalCanceledOrders}}

{{ __('Total Product Sale') }}

{{$totalProductSale}}

{{ __('Today Product Order') }}

{{$totalTodayProductSale}}

{{ __('This Month Sale') }}

{{$totalCurrentMonthProductSale}}

{{ __('This Year Product Sale') }}

{{$totalLatYearProductSale}}

{{ __('Total Earning') }}

{{$totalEarning}}

{{ __('Today Pending Earning') }}

{{$totalTodayEarning}}

{{ __('This Month Earning') }}

{{$totalMonthEarning}}

{{ __('This Year Erning') }}

{{$totalYearEarning}}

{{ __('Total Products') }}

{{ $totalItems }}

{{ __('Total Customers') }}

{{ $totalUsers }}

{{ __('Total Categories') }}

{{ $totalCategory }}

{{ __('Total Brands') }}

{{ $totalBrand }}

{{ __('Total Reviews') }}

{{ $totalReview }}

{{ __('Total Transactions') }}

{{ $totalTransaction }}

{{ __('Total Tickets') }}

{{ $totalTicket }}

{{ __('Pending Tickets') }}

{{ $totalPendingTicket }}

{{ __('Open Tickets') }}

{{ $totalTicket }}

{{ __('Total Blogs') }}

{{ $totalBlog }}

{{ __('Total Subscribers') }}

{{ $totalSubscriber }}

{{ __('Total System User') }}

{{$totalSystemUserEarning}}

{{ __('Stock Running Low') }}

{{$totalStock}}

{{__('Monthly Product Sales Report')}}
{{__('Monthly Earnings Report')}}
{{__('Recent Orders')}}
@if ($recentOrders->count() > 0)
@foreach($recentOrders as $data) @endforeach
{{ __('Customer') }} {{ __('Order ID') }} {{ __('Payment Method') }} {{ __('Total') }}
{{ $data->user->displayName()}} {{ $data->transaction_number}} {{ $data->payment_method}} {{$data->currency_sign}}{{PriceHelper::OrderTotal($data)}}
@else

{{ __('No Order Found') }}

@endif
@endsection @section('scripts') @endsection