Files
online.tbbank.gov.tm-larave…/migrate.md
2025-03-23 23:46:02 +05:00

14 lines
321 B
Markdown

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