@extends('layouts.app') @section('content')

Commands

Manage custom commands for {{ $tenant->channel_title }}

@forelse($commands as $command)
!{{ $command->name }}

{{ \Str::limit($command->response, 80) }}

{{ $command->is_enabled ? '●' : '○' }}
Cooldown

{{ $command->cooldown_sec }}s

Role

{{ $command->required_role }}

Edit
@csrf @method('DELETE')
@empty

No commands yet

Get started by creating your first custom command.

@endforelse
@if($commands->hasPages())
{{ $commands->links() }}
@endif
@endsection