fixed show page of recurring transactions

This commit is contained in:
Denis Duliçi
2022-06-05 00:10:20 +03:00
parent 6fd4ab9995
commit d91f3c075e
2 changed files with 24 additions and 2 deletions

View File

@ -18,7 +18,7 @@
@php
$recurring_message = trans('recurring.message_parent', [
'type' => mb_strtolower(trans_choice($textRecurringType, 1)),
'link' => '<a href="' . route(mb_strtolower(trans_choice($textRecurringType, 2)) . '.show', $parent->id) . '"><u>' . $parent->document_number . '</u></a>'
'link' => '<a href="' . route($routeTransactionShow, $parent->id) . '"><u>' . $parent->number . '</u></a>'
]);
@endphp