<div class="container small">
- <div class="py-m">
- @include('settings.parts.navbar', ['selected' => 'webhooks'])
- </div>
+ @include('settings.parts.navbar', ['selected' => 'webhooks'])
<div class="card content-wrap auto-height">
<table class="table">
<tr>
<th>{{ trans('common.name') }}</th>
- <th>{{ trans('settings.webhook_events_table_header') }}</th>
+ <th width="100">{{ trans('settings.webhook_events_table_header') }}</th>
+ <th width="100">{{ trans('common.status') }}</th>
</tr>
@foreach($webhooks as $webhook)
<tr>
{{ $webhook->trackedEvents->count() }}
@endif
</td>
+ <td>
+ {{ trans('common.status_' . ($webhook->active ? 'active' : 'inactive')) }}
+ </td>
</tr>
@endforeach
</table>
@else
- <p class="text-muted empty-text">
- {{ trans('common.no_items') }}
+ <p class="text-muted empty-text px-none">
+ {{ trans('settings.webhooks_none_created') }}
</p>
@endif