PHP code example of delta935142 / mitake

1. Go to this page and download the library: Download delta935142/mitake library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

delta935142 / mitake example snippets


Delta935142\Mitake\MitakeServiceProvider::class,

 namespace Your\Namespace;

// ...

use Delta935142\Mitake\Facades\Newsletter;

class YourClass
{
    public function yourMethod()
    {
        Newsletter::smSend($phone, $message);
    }
}

 namespace Your\Namespace;

// ...

use Delta935142\Mitake\Facades\Newsletter;

class YourClass
{
    public function yourMethod()
    {
        Newsletter::smQuery();
    }
}
shell
$ php artisan vendor:publish --provider="Delta935142\Mitake\MitakeServiceProvider"