Files
online.tbbank.gov.tm-larave…/migrate.md
2025-06-23 15:20:43 +05:00

14 lines
326 B
Markdown

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