long text control for transaction show

This commit is contained in:
Burak Civan 2022-10-17 14:41:30 +03:00
parent 79dc3891a3
commit c8cd3ee20c
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ return [
'create_recurring' => ':user created this recurring template on :date', 'create_recurring' => ':user created this recurring template on :date',
'schedule' => 'Repeat every :interval :frequency since :date', 'schedule' => 'Repeat every :interval :frequency since :date',
'children' => ':count transactions were created automatically', 'children' => ':count transactions were created automatically',
'transfer_headline' => 'From :from_account to :to_account', 'transfer_headline' => '<div> <span class="font-bold"> From: </span> :from_account </div> <div> <span class="font-bold"> to: </span> :to_account </div>',
'transfer_desc' => 'Transfer created on :date.', 'transfer_desc' => 'Transfer created on :date.',
], ],

View File

@ -16,7 +16,7 @@
/> />
@if ($transfer) @if ($transfer)
<div class="text-black-400 text-sm flex gap-x-1 mt-1"> <div class="text-black-400 text-sm space-y-3 mt-1">
{!! trans('transactions.slider.transfer_headline', ['from_account' => $from_account, 'to_account' => $to_account]) !!} {!! trans('transactions.slider.transfer_headline', ['from_account' => $from_account, 'to_account' => $to_account]) !!}
</div> </div>
@endif @endif