13 lines
319 B
PHP
13 lines
319 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() }}">
|
|
@vite('resources/js/app.js')
|
|
@inertiaHead
|
|
</head>
|
|
<body>
|
|
@inertia('onboard')
|
|
</body>
|
|
</html>
|