- PHP >= 7.0
- Laravel >= 5.5
First, install laravel 5.5, and make sure that the database connection settings are correct.
composer require huangdijia/laravel-mitakeThen run these commands to publish config
php artisan vendor:publish --provider="Huangdijia\Mitake\MitakeServiceProvider"// config/mitake.php
'username' => 'your account',
'password' => 'your password',use Huangdijia\Mitake\Facades\Mitake;
...
if (!Mitake::send('mobile', 'some message')) {
echo Mitake::getError();
echo Mitake::getErrno();
} else {
echo "send success";
}php artisan mitake:send 'mobile' 'some message'
# send success
# or
# errorif (!mitake()->send('mobile', 'some message')) {
echo mitake()->getError();
echo mitake()->getErrno();
} else {
echo "send success";
}
if (!$error = mitake_send('mobile', 'some message')) {
echo $error;
} else {
echo "send success";
}laravel-mitake is licensed under The MIT License (MIT).

