wip
This commit is contained in:
@@ -5,6 +5,11 @@
|
||||
|
||||
$card_month = array_key_exists($resource->guarantor_2_card_month, $months) ? $months[$resource->guarantor_2_card_month] : '-';
|
||||
$card_year = array_key_exists($resource->guarantor_2_card_year, $years) ? $years[$resource->guarantor_2_card_year] : '-';
|
||||
|
||||
if ($resource->source === 'mobile' && $resource->status == 'pending') {
|
||||
$card_month = $resource->guarantor_2_card_month;
|
||||
$card_year = $resource->guarantor_2_card_year;
|
||||
}
|
||||
@endphp
|
||||
|
||||
<style>
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
$card_month = array_key_exists($resource->guarantor_card_month, $months) ? $months[$resource->guarantor_card_month] : '-';
|
||||
$card_year = array_key_exists($resource->guarantor_card_year, $years) ? $years[$resource->guarantor_card_year] : '-';
|
||||
|
||||
if ($resource->source === 'mobile') {
|
||||
$card_month = $resource->card_month;
|
||||
$card_year = $resource->card_year;
|
||||
if ($resource->source === 'mobile' && $resource->status == 'pending') {
|
||||
$card_month = $resource->guarantor_card_month;
|
||||
$card_year = $resource->guarantor_card_year;
|
||||
}
|
||||
@endphp
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
$card_month = array_key_exists($resource->card_month, $months) ? $months[$resource->card_month] : '-';
|
||||
$card_year = array_key_exists($resource->card_year, $years) ? $years[$resource->card_year] : '-';
|
||||
|
||||
if ($resource->source === 'mobile') {
|
||||
if ($resource->source === 'mobile' && $resource->status == 'pending') {
|
||||
$card_month = $resource->card_month;
|
||||
$card_year = $resource->card_year;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user