1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-31 15:24:31 +03:00

Initial controller/views for webhooks management

This commit is contained in:
Dan Brown
2021-12-08 14:29:42 +00:00
parent a3a3055695
commit 4621d8bcc5
13 changed files with 295 additions and 2 deletions

View File

@ -0,0 +1,16 @@
@extends('layouts.simple')
@section('body')
<div class="container small">
<div class="py-m">
@include('settings.parts.navbar', ['selected' => 'webhooks'])
</div>
<form action="{{ url("/settings/webhooks/{$webhook->id}") }}" method="POST">
{!! method_field('PUT') !!}
@include('settings.webhooks.parts.form', ['model' => $webhook, 'title' => trans('settings.webhooks_edit')])
</form>
</div>
@stop