Blade is Laravel's templating engine — it lets you write dynamic HTML with clean syntax ({{ }}, @directives) that compiles to plain PHP. It provides template inheritance, components, and built-in XSS protection, keeping views readable and secure.
Data uitvoeren (automatisch escaped)
<h1>{{ $title }}</h1> {{-- echoes $title, AUTO-ESCAPED (XSS-safe) --}}
<p>{{ $user->name }}</p>
{!! $trustedHtml !!} {{-- unescaped — use ONLY for trusted HTML --}}
