17 lines
513 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
@if ($transfer->attachment)
<x-show.accordion type="attachment">
<x-slot name="head">
<x-show.accordion.head
title="{{ trans_choice('general.attachments', 2) }}"
description="{{ trans('transfers.slider.attachments') }}"
/>
</x-slot>
2022-06-01 10:15:55 +03:00
<x-slot name="body">
@foreach ($transfer->attachment as $file)
<x-media.file :file="$file" />
@endforeach
</x-slot>
</x-show.accordion>
2021-07-09 23:36:41 +03:00
@endif