mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Unbundle javascript language files automatically generated for each install * update docs * update laravel-vue-i18n-generator a newer (unreleased) verison is need for English fallback to work
31 lines
899 B
PHP
31 lines
899 B
PHP
@extends('layouts.librenmsv1')
|
|
|
|
@section('title', __('Settings'))
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div id="app">
|
|
<librenms-settings
|
|
prefix="{{ url('settings') }}"
|
|
initial-tab="{{ $active_tab }}"
|
|
initial-section="{{ $active_section }}"
|
|
:tabs="{{ $groups }}"
|
|
></librenms-settings>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@push('styles')
|
|
<link href="{{ asset(mix('/css/app.css')) }}" rel="stylesheet">
|
|
@endpush
|
|
|
|
@push('scripts')
|
|
@routes
|
|
<script src="{{ asset(mix('/js/lang/en.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/lang/' . app()->getLocale() . '.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/manifest.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/vendor.js')) }}"></script>
|
|
<script src="{{ asset(mix('/js/app.js')) }}"></script>
|
|
@endpush
|
|
|