@php $grid = $this->activityGrid; $activeDays = collect($grid)->where('bytes', '>', 0)->count(); $gridTotal = collect($grid)->sum('bytes'); $gridPeak = max(1, collect($grid)->max('bytes')); @endphp
{{ __('Account events from signup to now') }}
{{ __(':days active days · :bytes total transferred', [ 'days' => $activeDays, 'bytes' => bytes_human($gridTotal), ]) }}
{{ $m->body }}