@extends('layouts.app') @section('title', 'Webhook Yönetimi') @section('content')
Slack, Discord ve custom webhook'ları yönetin
{{ session('success') }}
{{ session('error') }}
| 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 | |
| Henüz webhook bulunmamaktadır. İlk webhook'u oluşturun | |||||