stan errors fixed

This commit is contained in:
2025-03-16 01:34:49 +05:00
parent 821ec1fe47
commit 0b47fe694c
7 changed files with 131 additions and 51 deletions

View File

@@ -5,4 +5,9 @@
**completed**
**cancelled**
Schema::getColumnListing('loan_order_required_docs')
Schema::getColumnListing('branches')
$a = collect(Schema::getColumns('branches'))->map(fn ($column) => [
'name' => $column['name'],
'type' => ($column['nullable'] ? 'null|' : '') . dbTypeToPhp($column['type']),
])->pluck('type', 'name')