authorize(); \DB::transaction(function () { $this->model->update($this->request->all()); // Upload attachment if ($this->request->file('attachment')) { $this->deleteMediaModel($this->model, 'attachment', $this->request); foreach ($this->request->file('attachment') as $attachment) { $media = $this->getMedia($attachment, 'transactions'); $this->model->attachMedia($media, 'attachment'); } } elseif (! $this->request->file('attachment') && $this->model->attachment) { $this->deleteMediaModel($this->model, 'attachment', $this->request); } // Recurring $this->model->updateRecurring($this->request->all()); }); return $this->model; } /** * Determine if this action is applicable. */ public function authorize(): void { if ($this->model->reconciled) { $message = trans('messages.warning.reconciled_tran'); throw new \Exception($message); } if ($this->model->isTransferTransaction()) { throw new \Exception('Unauthorized'); } } }