16 lines
533 B
PHP
16 lines
533 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=0, minimal-ui">
|
|
<title inertia>{{ config('app.name', 'Laravel') }}</title>
|
|
@routes
|
|
@viteReactRefresh
|
|
@vite(['resources/js/app.jsx', "resources/js/Pages/{$page['component']}.jsx"])
|
|
@inertiaHead
|
|
</head>
|
|
<body class="font-sans antialiased">
|
|
@inertia
|
|
</body>
|
|
</html>
|