mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
Modern Normalize viene usato per fixare le piccole differenze estetiche tra i vari browser
14 lines
335 B
PHP
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>
|