feat: Add DOCTYPE declaration to app.blade.php

This change adds the DOCTYPE declaration to the app.blade.php file in order to ensure proper rendering of HTML.
This commit is contained in:
Rico van Zelst
2023-12-14 15:04:44 +01:00
parent c15c4d640f
commit 47f811f7d9

View File

@@ -1,3 +1,4 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head> <head>