@extends('layouts.app') @section('content')
Back to Admin

Quota Management

Manage message rate limits for each tenant

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@endif

Tenant Message Quotas

Default: 20/min, 100/hour

@forelse($tenants as $tenant) @empty @endforelse
Channel User Status Per Minute Per Hour Actions
@if($tenant->channel_avatar_url) Avatar @endif

{{ $tenant->channel_title }}

{{ Str::limit($tenant->channel_id, 20) }}

{{ $tenant->user->name }}

{{ $tenant->user->email }}

{{ ucfirst($tenant->status) }} {{ $tenant->quotas['per_minute'] ?? 20 }} messages/min {{ $tenant->quotas['per_hour'] ?? 100 }} messages/hour
No tenants found

About Quotas

  • Per Minute: Maximum messages the bot can send per minute (1-1000)
  • Per Hour: Maximum messages the bot can send per hour (1-10000)
  • Default Values: 20 messages/minute, 100 messages/hour
  • Rate Limiting: Prevents YouTube API quota exhaustion and spam
@endsection