2020-06-08 08:27:03 -05:00
|
|
|
@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')
|
2021-09-10 08:07:08 -05:00
|
|
|
<link href="{{ asset(mix('/css/vendor.css')) }}" rel="stylesheet">
|
2020-06-08 08:27:03 -05:00
|
|
|
@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
|