2022-06-01 10:15:55 +03:00
|
|
|
@if ($transfer->attachment)
|
2022-08-18 10:55:39 +03:00
|
|
|
<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
|
|
|
|
2022-08-18 10:55:39 +03:00
|
|
|
<x-slot name="body">
|
2022-07-07 13:00:49 +03:00
|
|
|
@foreach ($transfer->attachment as $file)
|
|
|
|
<x-media.file :file="$file" />
|
|
|
|
@endforeach
|
2022-08-18 10:55:39 +03:00
|
|
|
</x-slot>
|
|
|
|
</x-show.accordion>
|
2021-07-09 23:36:41 +03:00
|
|
|
@endif
|