pingcrm/resources/views/app.blade.php

22 lines
780 B
PHP
Raw Normal View History

2019-03-18 08:53:00 -03:00
<!DOCTYPE html>
<html class="h-full bg-gray-100">
2019-03-18 08:53:00 -03:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-05-10 16:48:19 -03:00
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
2020-02-14 16:29:07 -03:00
{{-- Inertia --}}
<script src="https://polyfill.io/v3/polyfill.min.js?features=smoothscroll,NodeList.prototype.forEach,Promise,Object.values,Object.assign" defer></script>
{{-- Ping CRM --}}
<script src="https://polyfill.io/v3/polyfill.min.js?features=String.prototype.startsWith" defer></script>
2019-03-18 08:53:00 -03:00
<script src="{{ mix('/js/app.js') }}" defer></script>
2022-01-18 15:22:59 -03:00
@inertiaHead
2019-03-18 08:53:00 -03:00
</head>
2019-05-22 12:39:26 -03:00
<body class="font-sans leading-none text-gray-700 antialiased">
2021-12-08 12:15:39 -03:00
@inertia
2019-03-18 08:53:00 -03:00
</body>
</html>