Skip to content

iMohammadd/KaveNegar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

#KaveNegar

Installation

Step 1: Run this command:

composer require imohammadd/kavenegar

Step 2: Add provider in config/app.php

'providers' => [
    ...
    iMohammadd\KaveNegar\KaveNegarServiceProvider::class, //<--add this line at the end of provider array
]

Step 3: Run this command:

php artisan vendor:publish

Configuration file is placed in config/kavenegar.php , open it and enter your kavenegar.com api token

Usage

use the kavenegar class on your Controller:

use iMohammadd/KaveNegar/SMS;

a basic example of send a sms

public function sms(SMS $sms)
    {
        try {
            $sender = "10006707323323";
            $message = "Hello Api";
            $receptor = ['0937XXXXXXX', '0933XXXXXXX']; // reciver phone number as a array
            $date = null;
            $type = 1;
            $localIds = ['1','2'];
            $result = $sms->Send($receptor, $sender, $message, $date, $type, $localIds);
            dd($result); // or anything do with $result
        } catch (ApiException $e) {
            return $e->errorMessage();
        } catch (HttpException $e) {
            return $e->errorMessage();
        }
    }

for more info see Kavenegar.com Official Document

About

Kavenegar.com SMS Service Laravel Package

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages