@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 }}
{{ __('New Subscriptions') }}
{{ __('On Trial Period') }}
{{ __('Current Month') }}
{{ __('Year') }} {{ $currentYear }}
@endsection