@can('webhook_create')
{{ trans('global.add') }} {{ trans('cruds.webhook.title_singular') }}
@endcan
{{ trans('cruds.webhook.title_singular') }} {{ trans('global.list') }}
@foreach($webhooks as $key => $webhook) @endforeach
{{ trans('cruds.webhook.fields.id') }} {{ trans('cruds.webhook.fields.api') }} {{ trans('cruds.webhook.fields.webhook_url') }}  
{{ $webhook->id ?? '' }} {{ $webhook->api->name ?? '' }} {{ $webhook->webhook_url ?? '' }} @can('webhook_show') {{ trans('global.view') }} @endcan @can('webhook_edit') {{ trans('global.edit') }} @endcan @can('webhook_delete')
@endcan
@section('scripts') @parent @endsection