2022-06-01 10:15:55 +03:00
|
|
|
@php $created_date = '<span class="font-medium">' . company_date($transfer->created_at) . '</span>' @endphp
|
|
|
|
|
2022-08-18 10:55:39 +03:00
|
|
|
<x-show.accordion type="create">
|
|
|
|
<x-slot name="head">
|
|
|
|
<x-show.accordion.head
|
|
|
|
title="{{ trans('general.create') }}"
|
|
|
|
description="{!! trans('transactions.slider.create', ['user' => $transfer->owner->name, 'date' => $created_date]) !!}"
|
|
|
|
/>
|
|
|
|
</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
|
|
|
<div class="flex my-3 space-x-2 rtl:space-x-reverse">
|
2022-09-07 09:56:41 +03:00
|
|
|
<x-link href="{{ route('transfers.edit', $transfer->id) }}" id="show-slider-actions-edit-transfer" class="px-3 py-1.5 mb-3 sm:mb-0 bg-gray-100 hover:bg-gray-200 rounded-xl text-purple text-xs font-bold leading-6">
|
2022-06-01 10:15:55 +03:00
|
|
|
{{ trans('general.edit') }}
|
2022-08-03 14:04:32 +03:00
|
|
|
</x-link>
|
2022-06-01 10:15:55 +03:00
|
|
|
</div>
|
2022-08-18 10:55:39 +03:00
|
|
|
</x-slot>
|
|
|
|
</x-show.accordion>
|