@extends('layouts.app', ['title' => $pageTitle]) @section('content')

{{ __tr('WhatsApp Commerce Settings') }}

{{ __tr('Commerce Status') }}
@if($commerceSummary['is_commerce_enabled']) @else @endif
{{ __tr('Commerce Status') }}

{{ $commerceSummary['is_commerce_enabled'] ? __tr('Enabled') : __tr('Disabled') }}

@if($commerceSummary['catalog_id']) @else @endif
{{ __tr('Catalog') }}

@if($commerceSummary['catalog_name']) {{ $commerceSummary['catalog_name'] }} ({{ $commerceSummary['product_count'] }} {{ __tr('products') }}) @else {{ __tr('No catalog configured') }} @endif

{{ __tr('Commerce Configuration') }}
@csrf
@if($commerceSummary['catalog_id'])
{{ __tr('Catalog Information') }}
{{ __tr('Catalog ID:') }}
{{ $commerceSummary['catalog_id'] }}
{{ __tr('Product Count:') }}
{{ $commerceSummary['product_count'] }}
{{ __tr('Vertical:') }}
{{ $commerceSummary['catalog_vertical'] ?: __tr('Not specified') }}
@endif
{{ __tr('About WhatsApp Commerce') }}

{{ __tr('WhatsApp Commerce allows you to showcase your products directly in WhatsApp conversations. Customers can browse your catalog, add items to cart, and make purchases without leaving the chat.') }}

{{ __tr('Key Features:') }}
  • {{ __tr('Product catalog integration') }}
  • {{ __tr('Shopping cart functionality') }}
  • {{ __tr('Seamless customer experience') }}
  • {{ __tr('Order management through WhatsApp') }}
{{ __tr('Note:') }} {{ __tr('To use WhatsApp Commerce, you need to have a Facebook Business Manager account with a product catalog configured.') }}
@endsection