Skip to content

v1.0.6

Latest
Compare
Choose a tag to compare
@eldapour eldapour released this 27 Sep 11:59
· 3 commits to main since this release

πŸš€ v1.0.6 – Add Waapi Facade

Added

  • Waapi Facade for simpler static access:
    Waapi::sendOtp('201122717960', '123456');
    Waapi::sendMessage('201122717960', 'Hello from Octopus Team!');

Changed

  • Updated composer.json to register the Waapi alias automatically for Laravel applications:
    "extra": {
        "laravel": {
            "providers": [
                "OctopusTeam\\Waapi\\WaapiServiceProvider"
            ],
            "aliases": {
                "Waapi": "OctopusTeam\\Waapi\\Facades\\Waapi"
            }
        }
    }

βœ… Now you can use the facade style without needing to manually bind or import the service class.