Fixed transfer and split transaction show/create pages real_type issue ( #3qec0xc )

This commit is contained in:
Cüneyt Şentürk
2022-10-31 00:43:30 +03:00
parent 6bb35cf3a3
commit 083ea42aa6
4 changed files with 25 additions and 13 deletions

View File

@@ -4,20 +4,20 @@
</x-slot>
<x-slot name="buttons">
<x-transactions.show.buttons type="{{ $transaction->type }}" :transaction="$transaction" />
<x-transactions.show.buttons type="{{ $real_type }}" :transaction="$transaction" />
</x-slot>
<x-slot name="moreButtons">
<x-transactions.show.more-buttons type="{{ $transaction->type }}" :transaction="$transaction" hide-divider-3 hide-button-end />
<x-transactions.show.more-buttons type="{{ $real_type }}" :transaction="$transaction" hide-divider-3 hide-button-end />
</x-slot>
<x-slot name="content">
<x-transactions.show.content type="{{ $transaction->type }}" :transaction="$transaction" hide-schedule hide-children />
<x-transactions.show.content type="{{ $real_type }}" :transaction="$transaction" hide-schedule hide-children />
</x-slot>
@push('stylesheet')
<link rel="stylesheet" href="{{ asset('public/css/print.css?v=' . version('short')) }}" type="text/css">
@endpush
<x-transactions.script type="{{ $transaction->type }}" />
<x-transactions.script type="{{ $real_type }}" />
</x-layouts.admin>