retrofairie/resources/views/layouts/head.blade.php
2025-02-20 20:44:24 -08:00

13 lines
358 B
PHP

<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') }} @isset($title)
- {{ $title }} @endisset
</title>
<!-- Scripts -->
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>