1 @extends('layouts.simple')
5 <div class="container small">
7 @include('settings.parts.navbar', ['selected' => 'webhooks'])
9 <div class="card content-wrap auto-height">
11 <div class="flex-container-row items-center justify-space-between wrap">
12 <h1 class="list-heading">{{ trans('settings.webhooks') }}</h1>
15 <a href="{{ url("/settings/webhooks/create") }}"
16 class="button outline">{{ trans('settings.webhooks_create') }}</a>
20 <p class="text-muted">{{ trans('settings.webhooks_index_desc') }}</p>
22 <div class="flex-container-row items-center justify-space-between gap-m mt-m mb-l wrap">
24 <div class="block inline mr-xs">
25 <form method="get" action="{{ url("/settings/webhooks") }}">
28 placeholder="{{ trans('common.search') }}"
29 value="{{ $listOptions->getSearch() }}">
33 <div class="justify-flex-end">
34 @include('common.sort', $listOptions->getSortControlData())
38 @if(count($webhooks) > 0)
39 <div class="item-list">
40 @foreach($webhooks as $webhook)
41 @include('settings.webhooks.parts.webhooks-list-item', ['webhook' => $webhook])
45 <p class="text-muted empty-text px-none">
46 {{ trans('settings.webhooks_none_created') }}
51 {{ $webhooks->links() }}