@extends('layouts.app') @section('title', 'Webhook Yönetimi') @section('content')

Webhook Yönetimi

Slack, Discord ve custom webhook'ları yönetin

@if(session('success'))

{{ session('success') }}

@endif @if(session('error'))

{{ session('error') }}

@endif
@forelse($webhooks as $webhook) @empty @endforelse
Ad Tip URL Event'ler Durum İşlemler
{{ $webhook->name }} @if($webhook->description)

{{ Str::limit($webhook->description, 50) }}

@endif
@if($webhook->type === 'slack') @elseif($webhook->type === 'discord') @else @endif {{ strtoupper($webhook->type) }} {{ Str::limit($webhook->url, 40) }} @if(empty($webhook->events)) Tüm Event'ler @else
@foreach($webhook->events as $event) {{ $event }} @endforeach
@endif
@if($webhook->is_active) Aktif @else Pasif @endif
@csrf
@csrf @method('DELETE')
Henüz webhook bulunmamaktadır. İlk webhook'u oluşturun
@if($webhooks->hasPages())
{{ $webhooks->links() }}
@endif
@endsection