customOrder->fill($attr); return parent::fill($attr); } public function create(): array { $id = $this->id(); $this->customOrder->setReceiptIssuingOrder($id); $this->customOrder->save(); $messages = parent::create(); if (count($messages) !== 0) { return $messages; } // 駐車場名キャッシュ CacheParkingName::dispatch($this->customOrder->customer_code, $this->customOrder->parking_management_code); return []; } }