@extends('layouts.app') @section('title', 'Dashboard - EKINPAY') @section('page-title', 'Dashboard Overview') @section('content')

Companies

{{ $stats['totalCompanies'] }}

Orders

{{ $stats['totalOrders'] }}

Plans

{{ $stats['plansAvailable'] }}

Income

{{ $currencySymbol }}{{ number_format($stats['incomeThisMonth'], 0) }}

Full Year Revenue

@php $months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; $data = $monthlyIncome ?? array_fill(0, 12, 0); $maxValue = max($data); @endphp
@foreach($months as $index => $month) @php $height = $maxValue > 0 ? ($data[$index] / $maxValue) * 100 : 0; @endphp
{{ $month }}
@endforeach
@endsection @push('scripts') @endpush