Giter VIP home page Giter VIP logo

netgsm's Introduction

Netgsm Laravel Santral ve Sms Paketi

Hakkında

Netgsm Laravel Santral ve Sms Paketi

Kullanımı

Laravel 5.*

Kurmak için :

composer require brkphp/netgsm
  • App.php Dosyasına Provider olarak ekleyiniz :
Brkphp\Netgsm\NetgsmServiceProvider::class,
  • App.php Dosyasına Aliases olarak ekleyiniz :
'Netgsm' => Brkphp\Netgsm\Facade\Netgsm::class,

Ayarları Yayınlamak için :

php artisan vendor:publish 

Ayarları Yapmak için :

Config/netgsm.php içinde sisteme giriş yaparken kullandığınız bilgileri giriniz.

Sms Örnekleri

Sms Göndermek için

    $new = new \Brkphp\Netgsm\Sms();
    $new->message('deneme mesaj');
    $new->phone('0123456789');
    return $new->send();

Santral Örnekleri

Bugünün Kayıtlarını çekmek için

$new = new \Brkphp\Netgsm\Santral();
return $new->dateQuery();

Sadece dateQuery fonkisyonunu çağırırsanız , bugünün kayıtlarını çekecektir.

Tarih Bazlı Kayıtları çekmek için

$new = new \Brkphp\Netgsm\Santral();
$new->startDate(250820170000);
$new->stopDate(270820172359);
return $new->dateQuery();

Tarihler date('dmYHi') formatında olmalıdır.

Telefon Numarası ile Kayıtları çekmek için

$new = new \Brkphp\Netgsm\Santral();
$new->phone(123456789);
$new->phone(987654321);
return $new->sendQuery();

Uniqid ile Kayıtları çekmek için

$new = new \Brkphp\Netgsm\Santral();
$new->uniqId(123456789);
$new->uniqId(987654321);
return $new->sendQuery();

İleri Seviye

Herhangi bir ekstra veri göndermek isterseniz aşağıdaki fonksiyonları kullanabilirsiniz sms ve santral iki sınıftada kullanılabilir.

$new->addHeadParameter('key','value')
$new->addBodyParameter('key','value')

Parametreler ile ilgili detaylı bilgi Netgsm Api Dökümanında bulunmaktadır. Net Gsm Api

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.