mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 12:42:36 +01:00
Add timestamps for payment methods in export
This commit is contained in:
parent
1463544bdb
commit
70d263dfa2
@ -1773,6 +1773,9 @@ trait GenerateMigrationResources
|
||||
'gateway_type_id' => $payment_method->payment_type->gateway_type_id,
|
||||
'is_default' => $is_default,
|
||||
'meta' => $this->convertMeta($payment_method),
|
||||
'created_at' => $payment_method->created_at ? Carbon::parse($payment_method->created_at)->toDateString() : null,
|
||||
'updated_at' => $payment_method->updated_at ? Carbon::parse($payment_method->updated_at)->toDateString() : null,
|
||||
'deleted_at' => $payment_method->deleted_at ? Carbon::parse($payment_method->deleted_at)->toDateString() : null,
|
||||
];
|
||||
|
||||
$is_default = false;
|
||||
|
Loading…
Reference in New Issue
Block a user