# 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')