request = $this->getRequestInstance($request); } /** * Execute the job. * * @return Reconciliation */ public function handle() { $reconcile = $this->request->get('reconcile'); $transactions = $this->request->get('transactions'); $reconciliation = Reconciliation::create([ 'company_id' => $this->request['company_id'], 'account_id' => $this->request->get('account_id'), 'started_at' => $this->request->get('started_at'), 'ended_at' => $this->request->get('ended_at'), 'closing_balance' => $this->request->get('closing_balance'), 'reconciled' => $reconcile ? 1 : 0, ]); if ($transactions) { foreach ($transactions as $key => $value) { $t = explode('_', $key); $m = '\\' . $t['1']; $transaction = $m::find($t[0]); $transaction->reconciled = 1; $transaction->save(); } } return $reconciliation; } }