@extends('layouts.app') @section('title','Dashboard') @section('content')
@php $maxC = $status['plan']?->max_clients; $maxCh = $status['plan']?->max_charges_per_month; $usePctC = $maxC ? ($usage['clients']/$maxC)*100 : 0; $usePctCh = $maxCh ? ($usage['charges_month']/$maxCh)*100 : 0; $maxPct = max($usePctC,$usePctCh); @endphp @if($maxPct >= 100) @elseif($maxPct >= 80) @endifNada agendado.
@else @foreach($next7 as $c)Sem dados ainda.
@else| Cliente | Total Pago |
|---|---|
| {{ $c->name }} | R$ {{ number_format((float)$c->total,2,',','.') }} |