2022-08-18 10:55:39 +03:00

17 lines
496 B
PHP

@if ($attachment)
<x-show.accordion type="attachment">
<x-slot name="head">
<x-show.accordion.head
title="{{ trans_choice('general.attachments', 2) }}"
description="{{ trans('transactions.slider.attachments') }}"
/>
</x-slot>
<x-slot name="body">
@foreach ($attachment as $file)
<x-media.file :file="$file" />
@endforeach
</x-slot>
</x-show.accordion>
@endif