Files
onboard/resources/views/app.blade.php
2026-03-25 17:37:32 +09:00

19 lines
534 B
PHP

<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<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('onboard')
</body>
</html>