mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 04:30:09 +00:00
4d28618663
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
18 lines
676 B
PHP
18 lines
676 B
PHP
<x-mail::message>
|
|
# Speedtest Threshold Breached - #{{ $id }}
|
|
|
|
A new speedtest was completed using **{{ $service }}** on **{{ $isp }}** but a threshold was breached.
|
|
|
|
<x-mail::table>
|
|
| **Metric** | **Type** | **Threshold Value** | **Result Value** | **Status** |
|
|
|:-----------|:---------|:--------------------|:-----------------|:---------:|
|
|
@foreach ($benchmarks as $benchmark)
|
|
| {{ $benchmark['metric'] }} | {{ $benchmark['type'] }} | {{ $benchmark['threshold_value'] }} | {{ $benchmark['result_value'] }} | {{ $benchmark['passed'] ? '✅' : '❌' }} |
|
|
@endforeach
|
|
</x-mail::table>
|
|
|
|
<x-mail::button :url="$url">
|
|
{{ __('general.view') }}
|
|
</x-mail::button>
|
|
</x-mail::message>
|