326 B
326 B
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')