radfusion/resources/views/staff/reports/viewer/layout.blade.php
2025-01-11 21:29:31 +06:00

34 lines
1.1 KiB
PHP

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..700&display=swap" rel="stylesheet">
<title>{{ $title }}</title>
<style>
body {
height: 100%;
width: 100%;
font-family: "Inter", serif;
font-optical-sizing: auto;
}
</style>
@stack('header')
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container px-lg-2">
<span class="navbar-brand fw-semibold">{{ config('app.name') }}</span>
</div>
</nav>
@yield('content')
@stack('footer')
</body>
</html>