1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-24 07:17:55 +01:00
openstamanager/resources/views/external.blade.php
Maicol Battistini 1700c63b10
feat: Aggiunti header (top app bar), drawer, footer e Modern Normalize
Modern Normalize viene usato per fixare le piccole differenze estetiche tra i vari browser
2021-08-19 16:38:23 +02:00

14 lines
335 B
PHP

<!DOCTYPE html>
<html lang="{{app()->getLocale()}}">
@include('layouts.head')
<body>
@inertia
@routes
<script src="{{mix('js/manifest.js')}}" defer></script>
<script src="{{mix('js/vendor.js')}}" defer></script>
<script src="{{ mix('js/app.js') }}" defer></script>
</body>
</html>