123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace App\Http\Controllers\Admin;
- use App\Models\Project;
- use App\Models\User;
- use App\Models\UserAuth;
- use App\Models\WorkPoint;
- use Illuminate\Http\Request;
- class TestController extends Controller
- {
- public function index(Request $request)
- {
- // dd(User::where('phone', '13438082119')->first());
- $app = app('wechat.mini_program');
- $res = $app->template_message->send([
- 'touser' => 'oi4-45JF9_U6EuttPyvDjpV_yuC0',
- 'template_id' => 'UxFg6zf47Gmha84hNzbdTJ3K0UHzcXNMPUbJQj-ivA8',
- 'page' => 'index',
- 'form_id' => 'form-id',
- 'data' => [
- 'character_string13' => '编号',
- 'thing6' => '内容',
- 'phrase12' => '状态',
- 'thing22' => '工区',
- 'thing15' => '备注',
- ],
- ]);
- dd($res);
- }
- }
|