Skip to content

Commit d59e3ca

Browse files
committed
change
1 parent a2884ab commit d59e3ca

2 files changed

Lines changed: 1 addition & 19 deletions

File tree

src/Database/migrations/create_laravelbd_sms_table.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CreateLaravelbdSmsTable extends Migration
1818
* @table lbs_log
1919
*/
2020
Schema::create('lbs_log', function (Blueprint $table) {
21-
$table->id();
21+
$table->increments('id');
2222
$table->text('provider');
2323
$table->text('request_json');
2424
$table->text('response_json');

src/Provider/Mobireach.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,6 @@ public function sendRequest()
3535
$text = $this->senderObject->getMessage();
3636
$config = $this->senderObject->getConfig();
3737

38-
39-
40-
/*$client = new Client([
41-
'base_uri' => 'https://api.mobireach.com.bd/SendTextMessage',
42-
'timeout' => 10.0,
43-
]);
44-
45-
$response = $client->request('GET', '', [
46-
'query' => [
47-
'Username' => $config['Username'],
48-
'Password' => $config['Password'],
49-
'From' => $config['From'],
50-
'To' => $number,
51-
'Message' => $text,
52-
],
53-
'verify' => false
54-
]);*/
55-
5638
$query = [
5739
'Username' => $config['Username'],
5840
'Password' => $config['Password'],

0 commit comments

Comments
 (0)