1234567891011121314151617181920212223 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\Services\WechatService;
- class WechatController extends Controller
- {
- public function __construct(WechatService $wechatService)
- {
- $this->wechatService = $wechatService;
- }
- /**
- * 公众号分享
- */
- public function share(Request $request)
- {
- $res = $this->wechatService->share($request->all());
- return jsonSuccess(json_decode($res,true));
- }
- }
|