@extends('layouts.dashboard') @section('title', 'Company Growth') @section('header', 'Company Growth Analytics') @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
← Back to Analytics

Company Growth Over Time

Period: {{ $startDate->format('M d, Y') }} - {{ $endDate->format('M d, Y') }}

@forelse($growth as $item) @empty @endforelse
Date Companies Created
{{ \Carbon\Carbon::parse($item->date)->format('M d, Y') }} {{ $item->count }}
No growth data found for this period.
@if($growth->count() > 0)
Total Companies Created: {{ $growth->sum('count') }}
@endif
@endsection