From 99016af1373e06ef60b00a569a4136335e6222bc Mon Sep 17 00:00:00 2001 From: sayliraut Date: Thu, 10 Apr 2025 12:44:46 +0530 Subject: [PATCH] customer fillable fields --- app/Models/Customer.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Models/Customer.php b/app/Models/Customer.php index 95fd9e4..7eff633 100644 --- a/app/Models/Customer.php +++ b/app/Models/Customer.php @@ -29,6 +29,9 @@ class Customer extends Model 'version', 'name', 'additional_info', + 'country_xid', + 'state_xid', + 'city_xid', ]; protected $casts = [ @@ -60,4 +63,4 @@ public function users() { return $this->hasMany(User::class, 'customer_id', 'id'); } -} \ No newline at end of file +}