@extends('admin.layouts.adminpanel') @section('page_header') @php $page_title = 'Panel'; $currentYear = now()->year; $lastYear = $currentYear - 1; @endphp @include('admin.partials.page_header') @endsection @section('content')
{{ __('Active Clients') }} {{ $client_counts['Activo'] ?? 0 }}
{{ __('On Trial Period') }} {{ $client_counts['Prueba'] ?? 0 }}
{{ __('Inactive Clients') }} {{ $client_counts['Inactivo'] ?? 0 }}

{{ __('Current Month') }}

{{ __('New Subscriptions') }}
{{ $client_counts_month['Subscriptions'] ?? 0 }}
{{ __('On Trial Period') }}
{{ $client_counts_month['Prueba'] }}
{{ __('Inactive') }}
{{ is_array($client_counts_month) ? $client_counts_month['Inactivo'] ?? 0 : 0 }}

{{ __('Revenue') }}

{{ __('Last Month') }}
${{ number_format($revenue['last_month'], 2) }}
{{ __('Current Month') }}
${{ number_format($revenue['current_month'], 2) }}
{{ __('Year') }} {{ $currentYear }}
${{ number_format($revenue['total'], 2) }}
@endsection