Files
newznab-tmux/resources/views/admin/site-stats.blade.php
T
2025-10-05 03:40:50 +02:00

151 lines
8.0 KiB
PHP

@extends('layouts.admin')
@section('content')
<div class="container mx-auto px-4 py-6">
<div class="bg-white rounded-lg shadow-sm">
<!-- Header -->
<div class="px-6 py-4 border-b border-gray-200">
<h1 class="text-2xl font-semibold text-gray-800">
<i class="fa fa-chart-bar mr-2"></i>{{ $title }}
</h1>
</div>
<div class="p-6 space-y-8">
<!-- Top Grabbers -->
@if(!empty($topgrabs) && count($topgrabs) > 0)
<div>
<h2 class="text-lg font-semibold text-gray-800 mb-4">Top Grabbers</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Username</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Grabs</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($topgrabs as $grab)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">{{ $grab->username }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $grab->grabs }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
<!-- Top Downloads -->
@if(!empty($topdownloads) && count($topdownloads) > 0)
<div>
<h2 class="text-lg font-semibold text-gray-800 mb-4">Top Downloads</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Release</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Downloads</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($topdownloads as $download)
<tr>
<td class="px-6 py-4 text-sm font-medium text-gray-900">{{ $download->searchname }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $download->grabs }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
<!-- Recently Added -->
@if(!empty($recent) && count($recent) > 0)
<div>
<h2 class="text-lg font-semibold text-gray-800 mb-4">Recently Added Releases</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Releases</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($recent as $item)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">{{ $item->thedate }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $item->num }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
<!-- Users by Month -->
@if(!empty($usersbymonth) && count($usersbymonth) > 0)
<div>
<h2 class="text-lg font-semibold text-gray-800 mb-4">User Signups by Month</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Month</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Signups</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($usersbymonth as $month)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-900">{{ $month->mth }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $month->num }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
<!-- Users by Role -->
@if(!empty($usersbyrole) && count($usersbyrole) > 0)
<div>
<h2 class="text-lg font-semibold text-gray-800 mb-4">Users by Role</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Role</th>
<th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Count</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
@foreach($usersbyrole as $role)
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">{{ $role->name }}</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">{{ $role->num }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endif
@if(empty($topgrabs) && empty($topdownloads) && empty($recent) && empty($usersbymonth) && empty($usersbyrole))
<div class="text-center py-12">
<i class="fa fa-chart-bar text-gray-400 text-5xl mb-4"></i>
<h3 class="text-lg font-medium text-gray-900 mb-2">No statistics available</h3>
<p class="text-gray-500">Statistics will appear here once data is collected.</p>
</div>
@endif
</div>
</div>
</div>
@endsection