@extends('layouts.dashboard.superadminapp') @section('title', 'Dashboard') @section('styles') @endsection @section('content')
Manufacturing
View
Revenue Trend (Last 6 Months)
Production Status
Recent Activities
View All
@forelse($recentActivities as $activity)
{{ $activity['type'] }}
{{ $activity['title'] }}
{{ ucfirst($activity['status']) }}
{{ \Carbon\Carbon::parse($activity['date'])->diffForHumans() }}
@empty

No recent activities

@endforelse
Top Customers by Revenue
View All
@forelse($topCustomers as $index => $customer) @empty @endforelse
# Customer Revenue
{{ $index + 1 }} {{ $customer->company->company ?? 'N/A' }} {{ number_format($customer->total_revenue, 2) }}
No data available
@endsection @section('scripts') @endsection