123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- namespace App\Http\Controllers\Web\Talent;
- use App\Http\Controllers\Web\WebBaseController;
- use App\Services\Common\SmsService;
- use PhpOffice\PhpSpreadsheet\Spreadsheet;
- use PhpOffice\PhpSpreadsheet\IOFactory;
- use Illuminate\Support\Facades\DB;
- use App\Exceptions\ResponseException;
- class JjhcController extends WebBaseController
- {
- private $smsService;
- public function __construct(SmsService $smsService)
- {
- $this->smsService = $smsService;
- }
- public function test()
- {
- $a = $this->smsService->sendSms('13313826760', 'sms_buyhouse_supply', ['username'=>'林武','phone'=>'06','content'=>'25']);
- dd($a);
- throw new ResponseException("who are you?", [], 404);
- }
- }
|