Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
827 B
PHP
Raw Permalink Normal View History

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')
<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