add value host email and password from db global settings table

This commit is contained in:
arifal
2025-01-27 19:46:45 +07:00
parent 82ab44cfb6
commit 8b77e748ca
7 changed files with 103 additions and 17 deletions

View File

@@ -19,7 +19,9 @@ class GlobalSettingResource extends JsonResource
'key' => $this->key,
'value' => $this->value,
'type' => $this->type,
'description' => $this->description
'description' => $this->description,
'created_at' => $this->created_at->toDateTimeString(),
'updated_at' => $this->updated_at->toDateTimeString(),
];
}
}