@if ($slowRequests->isEmpty()) @else Method Route Count Slowest @foreach ($slowRequests->take(100) as $slowRequest) {{ $slowRequest->uri }} @if ($slowRequest->action)

{{ $slowRequest->action }}

@endif @if (is_array($config['threshold']))

{{ $slowRequest->threshold }}ms threshold

@endif
@if ($config['sample_rate'] < 1) ~{{ number_format($slowRequest->count * (1 / $config['sample_rate'])) }} @else {{ number_format($slowRequest->count) }} @endif @if ($slowRequest->slowest === null) Unknown @else {{ number_format($slowRequest->slowest) ?: '<1' }} ms @endif @endforeach
@if ($slowRequests->count() > 100)
Limited to 100 entries
@endif @endif