Files
toolbox/resources/views/layouts/app.blade.php
2025-12-02 10:16:32 +08:00

15 lines
394 B
PHP

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>@yield('title', 'Tradewind Toolbox')</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body>
@yield('content')
@stack('scripts')
</body>
</html>