@extends('admin.layout')
@section('title', 'Analytics')
@section('page-title', 'Website Analytics')
@section('page-subtitle', 'Track page views and visitor statistics')
@section('content')
Total Views
👁
{{ App\Models\PageView::count() }}
↑ All time
Unique Visitors
👤
{{ App\Models\PageView::distinct('ip_address')->count('ip_address') }}
↑ By IP
Today
📅
{{ App\Models\PageView::whereDate('viewed_at', today())->count() }}
↑ Today's views
This Week
📊
{{ App\Models\PageView::whereBetween('viewed_at', [now()->startOfWeek(), now()->endOfWeek()])->count() }}
↑ Weekly