fixed transfer show attachment description issue ( #363g7zf )

This commit is contained in:
Cüneyt Şentürk 2022-07-07 13:00:49 +03:00
parent f50e181b4a
commit 151d04f464

View File

@ -8,7 +8,7 @@
</span>
<div class="text-black-400 text-sm">
{{ trans_choice('transers.slider.attachments') }}
{{ trans('transers.slider.attachments') }}
</div>
<span class="material-icons absolute right-0 top-0 transition-all transform" x-bind:class="attachment === 1 ? 'rotate-180' : ''">expand_more</span>
@ -18,9 +18,9 @@
x-ref="container1"
x-bind:class="attachment == 1 ? 'h-auto ' : 'scale-y-0 h-0'"
>
@foreach ($transfer->attachment as $file)
<x-media.file :file="$file" />
@endforeach
@foreach ($transfer->attachment as $file)
<x-media.file :file="$file" />
@endforeach
</div>
</div>
@endif