mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-24 07:17:55 +01:00
13 lines
311 B
PHP
13 lines
311 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{app()->getLocale()}}">
|
|
@include('layouts.head')
|
|
<body>
|
|
@php
|
|
$modules = app(\App\Http\Controllers\Controller::class)
|
|
->getModules(request());
|
|
@endphp
|
|
@inertia
|
|
@include('layouts.footer')
|
|
</body>
|
|
</html>
|