Files
online.tbbank.gov.tm-larave…/migrate.md
2025-03-26 13:55:16 +05:00

14 lines
362 B
Markdown

# Status
**pending**
**register**
**processing**
**completed**
**cancelled**
Schema::getColumnListing('loan_paid_off_letter_orders')
$a = collect(Schema::getColumns('loan_paid_off_letter_orders'))->map(fn ($column) => [
'name' => $column['name'],
'type' => ($column['nullable'] ? 'null|' : '') . dbTypeToPhp($column['type']),
])->pluck('type', 'name')