芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/app/Jobs/coinPaymentCallbackProccedJob.php
data = $data; } /** * Execute the job. * * @return void */ public function handle() { // Do something... if(isset($this->data['status']) && $this->data['status']==1){ Log::info("confirmed"); }else{ Log::info('Not confirmed'); } /* === Output data $request from task schedule === */ // $this->data['request_type'] = 'schedule_transaction'; // $this->data['payload']; // <--- Your payload data // $this->data['time_created']; // $this->data['time_expires']; // $this->data['status']; /* -- Status transaction -- 0 : Waiting for buyer funds 1 : Funds received and confirmed, sending to you shortly 100 : Complete, -1 : Cancelled / Timed Out */ // $this->data['status_text']; // $this->data['type']; // $this->data['coin']; // $this->data['amount']; // $this->data['amountf']; // $this->data['received']; // $this->data['receivedf']; // $this->data['recv_confirms']; // $this->data['payment_address']; // $this->data['time_completed']; // showing if "$this->data['status" is 100 /* === End data $request from task schedule === */ /* === Output data $request from Create Transaction === */ // $this->data['request_type'] = 'create_transaction'; // $this->data['params']; // <--- Your custom params // $this->data['payload']; // <--- Your payload data // $this->data['transaction']['time_created']; // $this->data['transaction']['time_expires']; // $this->data['transaction']['status']; // $this->data['transaction']['status_text']; // $this->data['transaction']['type']; // $this->data['transaction']['coin']; // $this->data['transaction']['amount']; // $this->data['transaction']['amountf']; // $this->data['transaction']['received']; // $this->data['transaction']['receivedf']; // $this->data['transaction']['recv_confirms']; // $this->data['transaction']['payment_address']; /* === End data $request from Create Transaction === */ } }