#591 - databases

This commit is contained in:
Saeed Vaziry
2025-05-20 17:35:20 +02:00
parent eb86204069
commit 2850c1fa59
30 changed files with 940 additions and 284 deletions

View File

@ -18,7 +18,10 @@ public function toArray(Request $request): array
'id' => $this->id,
'server_id' => $this->server_id,
'name' => $this->name,
'collation' => $this->collation,
'charset' => $this->charset,
'status' => $this->status,
'status_color' => $this::$statusColors[$this->status] ?? 'gray',
'created_at' => $this->created_at,
'updated_at' => $this->updated_at,
];