mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-04 21:28:28 -07:00
15 lines
389 B
PHP
15 lines
389 B
PHP
{% set VUE_SCRIPT_NAME = 'webhooks/edit' %}
|
|
@extends('layout.v3.session')
|
|
|
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, webhook) }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div id="webhooks_edit"></div>
|
|
@endsection
|
|
@section('scripts')
|
|
<script type="text/javascript" nonce="{{ $JS_NONCE }}">
|
|
var previousUrl = '{{ route('webhooks.index') }}';
|
|
</script>
|
|
@endsection
|