Installation
composer require africoders/laravel-sdkConfiguration
Publish the config file:
php artisan vendor:publish --tag=africoders-configAdd your API key to .env:
AFRICODERS_API_KEY=afk_live_your_key_hereSending SMS
use Africoders\\Facades\\Africoders;\n\nAfricoders::sms()->send([\n 'recipient' => '+2348012345678',\n 'message' => 'Hello from Laravel!',\n]);