profile update

This commit is contained in:
2025-03-23 23:46:02 +05:00
parent d25227867c
commit 785e48d175
5 changed files with 79 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
Schema::getColumnListing('branches')
$a = collect(Schema::getColumns('branches'))->map(fn ($column) => [
$a = collect(Schema::getColumns('users'))->map(fn ($column) => [
'name' => $column['name'],
'type' => ($column['nullable'] ? 'null|' : '') . dbTypeToPhp($column['type']),
])->pluck('type', 'name')