Performance: Template inheritance (@extends, @section, @yield)
MEDIUM IMPACT
This affects server-side rendering speed and the size of the HTML sent to the browser, impacting initial page load time.
@extends('layouts.master') @section('content') <div>Page content</div> @endsection
@php echo file_get_contents('header.html'); @endphp <div>Page content</div> @php echo file_get_contents('footer.html'); @endphp
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Manual HTML includes | No direct DOM impact (server-side) | N/A | Larger HTML increases paint time | [X] Bad |
| Blade template inheritance | No direct DOM impact (server-side) | N/A | Smaller HTML reduces paint time | [OK] Good |