@extends('admin.layouts.app') @section('title','Admin Dashboard') @section('content')
{{-- Header --}}

Admin Dashboard

Welcome back! Here's what's happening with MyFamily Moments.

{{-- Statistics --}}

Total Users

Monthly Revenue

Photos Uploaded

today

Active Families

% from last month
{{-- Charts --}}
User Growth
Live Data
Revenue Analytics
{{-- Notifications + Recent Activity --}}
Live Notifications
{{-- Will be filled by AJAX --}}
Recent Activity
@foreach($recentActivity as $a)
@if(Str::contains($a['type'],'payment'))
@elseif(Str::contains($a['type'],'storage'))
@else {{ $a['who'] }} @endif

{{ $a['who'] }}

{{ $a['title'] }}
{{ $a['when']->diffForHumans() }}
@endforeach
{{-- Broadcast Modal --}} @endsection @push('script') @endpush