@extends('layouts.app') @section('title', 'API Sync Reports') @section('extra_head') @endsection @section('extra_css') .report-container { background: rgba(15, 23, 42, 0.4); border: 1px solid var(--border); border-radius: 1.5rem; padding: 2.5rem; margin-top: 2rem; } .view-filters { display: flex; gap: 1rem; margin-bottom: 2rem; } .view-btn { background: rgba(30, 41, 59, 0.6); color: white; border: 1px solid rgba(255, 255, 255, 0.1); padding: 0.6rem 1.5rem; border-radius: 0.8rem; text-decoration: none; font-weight: 600; transition: all 0.3s ease; } .view-btn.active, .view-btn:hover { background: var(--primary); color: #0f172a; border-color: var(--primary); } /* DataTables Dark Mode Overrides */ .dataTables_wrapper { color: white; } table.dataTable tbody tr { background-color: transparent !important; } table.dataTable tbody tr:hover { background-color: rgba(56, 189, 248, 0.05) !important; } .dataTables_length, .dataTables_filter, .dataTables_info, .dataTables_paginate { color: white !important; } .paginate_button { color: white !important; } .dt-buttons .dt-button { background: var(--primary) !important; color: #0f172a !important; border: none !important; border-radius: 0.5rem !important; font-weight: bold !important; } @endsection @section('content')
Track automated and manual sync API hits over time.
| Period ({{ ucfirst($viewType) }}) | Auto Sync Hits | Manual Sync Hits | Total Hits |
|---|---|---|---|
| {{ $log->period }} | {{ number_format($log->auto_hits) }} | {{ number_format($log->manual_hits) }} | {{ number_format($log->total_hits) }} |