From feb10c450bd817289295cb27fd90c107d3cac67e Mon Sep 17 00:00:00 2001 From: developer Date: Thu, 16 Apr 2026 09:45:55 +0800 Subject: [PATCH] =?UTF-8?q?fix!=20=D0=BD=D0=B5=D0=BA=D0=BE=D1=80=D1=80?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=BD=D0=B0=D1=8F=20=D0=BE=D1=82=D0=BF=D1=80?= =?UTF-8?q?=D0=B0=D0=B2=D0=BA=D0=B0=20id=20=D0=BA=D0=B2=D0=B0=D1=80=D1=82?= =?UTF-8?q?=D0=B8=D1=80=D1=8B=20plan7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ClientCreateForm/Http/Livewire/ClientCreateLivewire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Modules/ClientCreateForm/Http/Livewire/ClientCreateLivewire.php b/app/Modules/ClientCreateForm/Http/Livewire/ClientCreateLivewire.php index b7062f7..95bbfc3 100644 --- a/app/Modules/ClientCreateForm/Http/Livewire/ClientCreateLivewire.php +++ b/app/Modules/ClientCreateForm/Http/Livewire/ClientCreateLivewire.php @@ -233,7 +233,7 @@ private function createDeal($complexId, $room) !$deal = Deal::create([ 'agent_id' => $this->agentId, 'complex_id' => $complexId, - 'plan7_data' => ($this->plan7Room) ? json_encode($room) : null + 'plan7_data' => ($room) ? json_encode($room) : null ]) ) { return false;