mhrezaei / asanak-sms
Asanak Sms Sender Package
Installs: 116
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/mhrezaei/asanak-sms
This package is not auto-updated.
Last update: 2025-12-07 08:19:05 UTC
README
Installation:
Run below statements on your terminal :
STEP 1 :
composer require "mhrezaei/asanak-sms":"1.0.0"
STEP 2 : Add provider and facade in config/app.php
'providers' => [
...
Asanak\Sms\AsanakSmsProvider::class, // <-- add this line at the end of provider array
],
'aliases' => [
...
'AsanakSms' => Asanak\Sms\Facade\AsanakSmsFacade::class, // <-- add this line at the end of aliases array
]
Step 3:
php artisan vendor:publish --tag=AsanakSmsTag --force
Configuration file is placed in config/asanak-sms.php , open it and enter your Asanak webservice config
How to use!:
AsanakSms::send('mobile_number', 'massage_body');