12345678910111213141516171819202122232425 |
- <?php
- namespace App\Http\Controllers\V1;
- use App\Models\Pay;
- class PayController extends Controller
- {
- public function bytedance()
- {
- $app = $this->getByteDanceFactory();
- }
- public function query($payId)
- {
- $pay = Pay::find($payId);
- if(!$pay || $pay->status){
- return $this->success();
- }
- return $this->error();
- }
- }
|