Laravel Vitals
Toggle theme
audit · May 12, 12:12
/dashboard

dashboard

desktop · Tue, May 12, 2026 12:12 PM ·
demo
Perf
A
100/100
Global
A
94/100
Performance
Lighthouse Performance score
A
Accessibility
Lighthouse Accessibility score
A
+1 vs prev
Best Practices
Lighthouse Best Practices score
B
-4 vs prev
SEO
Lighthouse SEO score
A
+1 vs prev

Core Web Vitals

LCP
Largest Contentful Paint — time until the largest visible content element is rendered. Good = under 2.5s.
1167ms
Largest Contentful Paint
CLS
Cumulative Layout Shift — how much visible content unexpectedly shifts during load. Good = under 0.1.
0.06
Cumulative Layout Shift
INP
Interaction to Next Paint — latency between user input and the next paint. Good = under 200ms.
108ms
Interaction to Next Paint
TTFB
Time to First Byte — how long the server takes to respond with the first byte. Good = under 800ms.
278ms
Time to First Byte

Front-end ↔ Back-end breakdown

LCP composition 1167ms total
backend 278ms (23.8%)
frontend 889ms (76.2%)

Backend telemetry

Queries
21 (15 unique)
Query time
257ms
Memory peak
24.0MB
Cache hit rate
95%

Recommendations

2

performance

Eliminate render-blocking resources

Info
View all occurrences

Resources in the head block first paint until they download. Defer or inline critical CSS.

Render-blocking resources in <head> delay first paint until the browser downloads and parses them. Every kilobyte adds latency, especially on slow networks.

Recommended
<!-- Defer non-critical scripts -->
<script src="analytics.js" defer></script>

<!-- Async for independent scripts -->
<script src="ads.js" async></script>
Avoid
<!-- Blocks parsing until downloaded -->
<script src="jquery.js"></script>

Reduce unused JavaScript

Warning
View all occurrences

JavaScript shipped to the browser but never executed wastes bandwidth and parse time.

Unused JavaScript still costs network bandwidth, parse time, and CPU. The browser must download, parse, and compile every byte you ship — even if it never executes.

Typical savings: 30-60% bundle size, 200-500ms LCP improvement
Recommended
// Lazy-load route-specific JS
const Dashboard = () => import('./Dashboard.js');

// Or use @vite directive in Blade
@vite(['resources/js/app.js'])
Avoid
<!-- Loading the entire bundle on every page -->
<script src="/build/everything.js"></script>
Found in your application
resources/views/dashboard.blade.php:12
<script src="/build/assets/app-abc.js"></script>
Hint: Use @vite([...]) instead.

Page details

Page weight
1,235 KB
HTTP requests
31
DOM elements
1,196
Render-blocking
199ms
LCP element
main > section.hero > img <img src="/images/hero.jpg" loading="eager">

Resource breakdown

Type
Count
Size
script 11 531 KB
stylesheet 4 110 KB
image 20 775 KB
font 2 98 KB
document 1 29 KB

Third-party impact

1
Entity
Transfer
Blocking
Main thread
Google Analytics 23 KB 60ms 100ms

Main thread breakdown

Slowest requests

URL
Type
Size
Duration
vendor.js
Script
371 KB
340ms
products
XHR
24 KB
223ms

Diagnostics

Critical request chain depth
3 levels
Top JS execution costs
  • app.js 487ms
  • vendor.js 203ms
Open Vitals Spotlight (Cmd+K)
Open Vitals Spotlight (Ctrl+K)
Type at least 2 characters to search
↑↓ Navigate Open
0 results