This commit is contained in:
2025-05-24 14:57:16 +05:00
parent 29b128f5ab
commit b4ae9293b9

View File

@@ -44,7 +44,7 @@ class DownloadCardTransaction extends Action
passport_serie: $model->passport_serie,
passport_id: $model->passport_id,
card_number_masked: Str::mask($model->card_number, '*', 6, 6),
card_expire_date: $model->card_month .'/'. substr($model->card_year, 2),
card_expire_date: $model->card_month.'/'.substr($model->card_year, 2),
start_date: $start_date->format('d.m.Y'),
end_date: $end_date->format('d.m.Y'),
);
@@ -122,6 +122,6 @@ class DownloadCardTransaction extends Action
curl_close($curl);
return $response;
return (array) $response;
}
}