mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-18 18:44:16 +00:00
More code for #2543
This commit is contained in:
@@ -211,7 +211,7 @@ class BillTransformer extends AbstractTransformer
|
|||||||
$currentStart = clone $nextExpectedMatch;
|
$currentStart = clone $nextExpectedMatch;
|
||||||
}
|
}
|
||||||
$simple = $set->map(
|
$simple = $set->map(
|
||||||
function (Carbon $date) {
|
static function (Carbon $date) {
|
||||||
return $date->format('Y-m-d');
|
return $date->format('Y-m-d');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
@@ -78,7 +78,11 @@
|
|||||||
{{ trans('components.not_or_not_yet') }}
|
{{ trans('components.not_or_not_yet') }}
|
||||||
</td>
|
</td>
|
||||||
<td class="expected_in_period hidden-sm hidden-xs" data-value="{{ entry.next_expected_match }}">
|
<td class="expected_in_period hidden-sm hidden-xs" data-value="{{ entry.next_expected_match }}">
|
||||||
{{ formatDate(entry.next_expected_match, monthAndDayFormat) }}
|
{% for date in entry.pay_dates %}
|
||||||
|
{#{{ formatDate(entry.next_expected_match, monthAndDayFormat) }}<br>#}
|
||||||
|
{{ formatDate(date, monthAndDayFormat) }}<br>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user