laravel-caesar-cipher/resources/views/welcome.blade.php

14 lines
328 B
PHP
Raw Permalink Normal View History

2023-12-21 11:49:23 +03:00
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Caesar</title>
@vite('resources/app.js')
@vite('resources/css/app.css')
</head>
<body>
<div id="app"></div>
</body>
</html>