mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 23:37:51 +01:00
Spostata funzione di traduzione JS all'interno di `utils.js` e poi portata in una variabile globale. Le traduzioni sono ora salvate nella cache.
15 lines
227 B
PHP
15 lines
227 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{app()->getLocale()}}">
|
|
@include('layouts.head')
|
|
<body>
|
|
@inertia
|
|
|
|
@routes
|
|
|
|
@client
|
|
@vite('app')
|
|
|
|
@include('layouts.translations')
|
|
</body>
|
|
</html>
|