2021-06-24 13:52:49 +03:00
|
|
|
@if ($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('transactions.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-06-01 10:15:55 +03:00
|
|
|
@foreach ($attachment as $file)
|
|
|
|
<x-media.file :file="$file" />
|
|
|
|
@endforeach
|
2022-08-18 10:55:39 +03:00
|
|
|
</x-slot>
|
|
|
|
</x-show.accordion>
|
2021-06-24 13:52:49 +03:00
|
|
|
@endif
|