pingcrm/resources/views/app.blade.php

23 lines
710 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" />
<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>
@routes
</head>
2019-05-22 12:39:26 -03:00
<body class="font-sans leading-none text-gray-700 antialiased">
2019-03-18 08:53:00 -03:00
2019-04-09 19:55:36 -03:00
@inertia
2019-03-18 08:53:00 -03:00
</body>
</html>