19 lines
545 B
PHP
19 lines
545 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">
|
|
|
|
<title>{{ config('app.name', 'Laravel') }}</title>
|
|
|
|
<!-- Styles / Scripts -->
|
|
@if (file_exists(public_path('build/manifest.json')) || file_exists(public_path('hot')))
|
|
@vite(['resources/js/app.js'])
|
|
@inertiaHead
|
|
@endif
|
|
</head>
|
|
<body>
|
|
@inertia('kartoteka')
|
|
</body>
|
|
</html>
|