mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-15 21:36:37 +08:00
17 lines
495 B
PHP
17 lines
495 B
PHP
<div id="calendar-settings-app"></div>
|
|
|
|
@section('javascripts')
|
|
@include('calendar::partials/translations')
|
|
<script {!! \Helper::cspNonceAttr() !!}>
|
|
window.ljpccalendarmodule = {
|
|
csrf: '{{ csrf_token() }}'
|
|
};
|
|
</script>
|
|
<script type="module" src="{!! $settings['js'] !!}" {!! \Helper::cspNonceAttr() !!}></script>
|
|
@endsection
|
|
|
|
@section('stylesheets')
|
|
<link rel="stylesheet" href="{!! $settings['css'] !!}">
|
|
@endsection
|
|
|
|
@include('partials/editor')
|