# ============================================ # SMS Gateway Configuration # Add these lines to your .env file # ============================================ # HRSoft SMS Gateway (Bangladesh) HRSOFT_SMS_API_KEY=your_hrsoft_api_key_here HRSOFT_SMS_CUSTOMER_ID=your_customer_id_here # Twilio SMS Gateway (Global - USA, UK, etc.) TWILIO_ACCOUNT_SID=your_twilio_account_sid_here TWILIO_AUTH_TOKEN=your_twilio_auth_token_here TWILIO_PHONE_NUMBER=+1234567890 # Nexmo/Vonage SMS Gateway (India, etc.) NEXMO_API_KEY=your_nexmo_api_key_here NEXMO_API_SECRET=your_nexmo_api_secret_here NEXMO_SENDER_ID=YourBrand # Fast2SMS Gateway (India) FAST2SMS_API_KEY=your_fast2sms_api_key_here FAST2SMS_SENDER_ID=FSTSMS # DialMyCall Gateway (USA) DIALMYCALL_API_KEY=your_dialmycall_api_key_here DIALMYCALL_PHONE_NUMBER=+1234567890 # ============================================ # Quick Start Instructions: # ============================================ # 1. Copy the lines above to your .env file # 2. Replace placeholder values with actual credentials # 3. Run: php artisan migrate # 4. Run: php artisan db:seed --class=SmsGatewaySeeder # 5. Visit http://your-domain/sms_gateway to manage # ============================================