aspirecloud/resources/views/layouts/plain.blade.php
2025-01-21 19:23:00 -07:00

11 lines
281 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>@yield('title', config('app.name'))</title>
@yield('head')
</head>
<body>
@yield('content')
</body>
</html>