@include('settings.parts.navbar', ['selected' => 'webhooks'])
{{ trans('settings.webhooks') }}
{{ trans('settings.webhooks_index_desc') }}
@include('common.sort', ['options' => [
'name' => trans('common.sort_name'),
'endpoint' => trans('settings.webhooks_endpoint'),
'created_at' => trans('common.sort_created_at'),
'updated_at' => trans('common.sort_updated_at'),
'active' => trans('common.status'),
], 'order' => $listDetails['order'], 'sort' => $listDetails['sort'], 'type' => 'webhooks'])
@if(count($webhooks) > 0)
@foreach($webhooks as $webhook)
@include('settings.webhooks.parts.webhooks-list-item', ['webhook' => $webhook])
@endforeach
@else
{{ trans('settings.webhooks_none_created') }}
@endif
{{ $webhooks->links() }}