{{-- Breadcrumb --}}
{{ __('Channels') }} / {{ $channel->label() }}
{{-- Outer card. Solid surface — no gradient, which renders poorly in dark mode (the `to-zinc-900/60` makes the card semi-transparent and the page bg bleeds through). --}}
{{ $channel->label() }} {{ __('Coming soon') }}

{{ $channel->description() }}

{{-- Inner "What this channel will do" panel. Distinct border so it doesn't melt into the outer card in dark mode. --}}

{{ __('What this channel will do') }}

    @switch($channel) @case(\App\Enums\ChannelKey::Sms)
  • {{ __('Two-way SMS conversations land in the same inbox as email tickets.') }}
  • {{ __('Per-store sender numbers — each store can use a different short code or long number.') }}
  • {{ __('Inbound STOP / HELP keyword handling per regulator requirements.') }}
  • @break @case(\App\Enums\ChannelKey::Whatsapp)
  • {{ __('WhatsApp Business API inbox — messages route into tickets alongside other channels.') }}
  • {{ __('Template message support for marketing-window outbound.') }}
  • {{ __('Rich media: images, documents, location pins.') }}
  • @break @case(\App\Enums\ChannelKey::Chat)
  • {{ __('Embeddable live-chat widget for your storefront — drops in with a script tag.') }}
  • {{ __('Visitor context: current page, cart contents, logged-in customer.') }}
  • {{ __('Auto-greeting flows and agent presence indicators.') }}
  • @break @case(\App\Enums\ChannelKey::HelpCentre)
  • {{ __('Public, searchable knowledge base hosted at a per-store URL.') }}
  • {{ __('Deflection metrics — see which articles prevent tickets.') }}
  • {{ __('Article drafting AI that learns from your resolved tickets.') }}
  • @break @endswitch
{{ __('Back to Channels') }}