mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
30 lines
824 B
PHP
30 lines
824 B
PHP
@extends('poller.index')
|
|||
|
|
|
||
|
|
@section('title', __('Poller Settings'))
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
@parent
|
||
|
|
<div id="app">
|
||
|
|
<poller-settings
|
||
|
|
:pollers='@json($poller_cluster, JSON_FORCE_OBJECT)'
|
||
|
|
:settings='@json($settings, JSON_FORCE_OBJECT)'
|
||
|
|
></poller-settings>
|
||
|
|
</div>
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@push('styles')
|
||
|
|
<link href="{{ asset(mix('/css/app.css')) }}" rel="stylesheet">
|
||
|
|
@endpush
|
||
|
|
|
||
|
|
@section('javascript')
|
||
|
|
<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>
|
||
|
|
@routes
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@push('scripts')
|
||
|
|
<script src="{{ asset(mix('/js/app.js')) }}"></script>
|
||
|
|
@endpush
|