TIF_NGANJUK_E41212146/resources/views/layouts/home.blade.php

15 lines
549 B
PHP

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="icon" href="/images/logo.svg" type="image/png">
<title>@yield('title', config('app.name', 'Laravel'))</title>
@vite(['resources/css/app.css', 'resources/js/app.js'])
</head>
<body class="antialiased">
@yield('content')
</body>
</html>