forked from alexjustesen/speedtest-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.blade.php
More file actions
25 lines (21 loc) · 858 Bytes
/
dashboard.blade.php
File metadata and controls
25 lines (21 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<x-app-layout title="Dashboard">
<div class="grid gap-4 sm:grid-cols-6 sm:gap-8">
<div class="col-span-full">
@livewire(\App\Filament\Widgets\StatsOverviewWidget::class)
</div>
@if ($latestResult)
<div class="text-sm font-semibold leading-6 text-center col-span-full sm:text-base">
Latest result: {{ $latestResult?->created_at->diffForHumans() }}
</div>
@endif
<div class="col-span-full">
@livewire(\App\Filament\Widgets\RecentSpeedChartWidget::class)
</div>
<div class="col-span-full">
@livewire(\App\Filament\Widgets\RecentPingChartWidget::class)
</div>
<div class="col-span-full">
@livewire(\App\Filament\Widgets\RecentJitterChartWidget::class)
</div>
</div>
</x-app-layout>