- Evolution API v2 integration with full HTTP client - WhatsApp instance management (Create, Connect, Delete, LogOut, Restart) - Real-time QR Code display with Alpine.js countdown timer - Pairing code support for WhatsApp Web linking - Webhook endpoint for receiving Evolution API events - Complete instance settings (reject calls, always online, read messages, etc.) - Filament v4 Resource with modal QR Code after instance creation - Table actions for Connect, View, and Edit - Status badges with Filament's native components - Full translations support (English and Portuguese) - Native Filament multi-tenancy support - DTOs with Spatie Laravel Data for type safety - Laravel Events for extensibility - Background job processing for webhooks and messages - Comprehensive configuration file
22 lines
782 B
PHP
22 lines
782 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'modal_title' => 'Connect :instance',
|
|
'loading' => 'Loading...',
|
|
'connected' => 'Connected',
|
|
'waiting_scan' => 'Waiting for scan',
|
|
'error' => 'Connection error',
|
|
'expires_in' => 'Expires in',
|
|
'connected_title' => 'WhatsApp Connected!',
|
|
'connected_description' => 'Your WhatsApp instance is connected and ready to send and receive messages.',
|
|
'error_title' => 'Connection Error',
|
|
'try_again' => 'Try Again',
|
|
'scan_instructions' => 'Open WhatsApp on your phone, go to Settings > Linked Devices > Link a Device, and scan this QR code.',
|
|
'or_use_code' => 'Or enter this code on your phone:',
|
|
'copied' => 'Copied!',
|
|
'refresh' => 'Refresh QR Code',
|
|
'generate' => 'Generate QR Code',
|
|
];
|