@extends('layouts.app-sidebar') @section('content')
Back to Timers

Edit Timer

Update timer for {{ $tenant->channel_title }}

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('message')

{{ $message }}

@enderror
@error('interval_min')

{{ $message }}

@enderror

Min 5 minutes

@error('min_chat_lines')

{{ $message }}

@enderror

0 = no requirement

Dead Chat Protection: Timer won't fire until the required number of unique users have chatted. Same user chatting multiple times only counts once (within 5 minutes). Prevents spam in dead chat.

is_enabled) ? 'checked' : '' }} class="w-4 h-4 text-db-accent-primary bg-db-surface border-db-border rounded focus:ring-2 focus:ring-db-accent-primary/50">
@if($timer->last_fired_at || $timer->next_fire_at)

Timer Stats

@if($timer->last_fired_at)
Last fired: {{ $timer->last_fired_at->diffForHumans() }}
@endif @if($timer->next_fire_at)
Next fire: {{ $timer->next_fire_at->diffForHumans() }}
@endif
Unique users since last: {{ $timer->lines_since_last_fire ?? 0 }}
@endif
Cancel
@endsection