You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
350 B
PHP
20 lines
350 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Services\SendMessgeService;
|
|
use Illuminate\Http\Request;
|
|
|
|
class TestSendMsgController extends Controller
|
|
{
|
|
public function SendMsg( )
|
|
{
|
|
|
|
$s=new SendMessgeService();
|
|
|
|
$response = $s->sendMessage('19933509886','测试短信');
|
|
|
|
return response()->json($response);
|
|
}
|
|
}
|