Merge branch 'master' of https://github.com/brkcvn/akaunting into code-clean
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
@stack('add_new_button_start')
|
||||
|
||||
@can('create-banking-transfers')
|
||||
<x-link href="{{ route('transfers.create') }}" kind="primary">
|
||||
<x-link href="{{ route('transfers.create') }}" kind="primary" id="show-more-actions-new-transfer">
|
||||
{{ trans('general.title.new', ['type' => trans_choice('general.transfers', 1)]) }}
|
||||
</x-link>
|
||||
@endcan
|
||||
|
||||
@@ -10,11 +10,7 @@
|
||||
|
||||
<x-slot name="body">
|
||||
<div class="flex my-3 space-x-2 rtl:space-x-reverse">
|
||||
<x-link
|
||||
href="{{ route('transfers.edit', $transfer->id) }}"
|
||||
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"
|
||||
override="class"
|
||||
>
|
||||
<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">
|
||||
{{ trans('general.edit') }}
|
||||
</x-link>
|
||||
</div>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
@stack('edit_button_start')
|
||||
|
||||
@can('update-banking-transfers')
|
||||
<x-dropdown.link href="{{ route('transfers.edit', $transfer->id) }}">
|
||||
<x-dropdown.link href="{{ route('transfers.edit', $transfer->id) }}" id="show-more-actions-edit-transfer">
|
||||
{{ trans('general.edit') }}
|
||||
</x-dropdown.link>
|
||||
@endcan
|
||||
@@ -16,7 +16,7 @@
|
||||
@stack('duplicate_button_start')
|
||||
|
||||
@can('create-banking-transfers')
|
||||
<x-dropdown.link href="{{ route('transfers.duplicate', $transfer->id) }}">
|
||||
<x-dropdown.link href="{{ route('transfers.duplicate', $transfer->id) }}" id="show-more-actions-duplicate-transfer">
|
||||
{{ trans('general.duplicate') }}
|
||||
</x-dropdown.link>
|
||||
@endcan
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
@stack('print_button_start')
|
||||
|
||||
<x-dropdown.link href="{{ route('transfers.print', $transfer->id) }}" target="_blank">
|
||||
<x-dropdown.link href="{{ route('transfers.print', $transfer->id) }}" target="_blank" id="show-more-actions-print-transfer">
|
||||
{{ trans('general.print') }}
|
||||
</x-dropdown.link>
|
||||
|
||||
@@ -35,7 +35,7 @@
|
||||
|
||||
@stack('pdf_button_start')
|
||||
|
||||
<x-dropdown.link href="{{ route('transfers.pdf', $transfer->id) }}">
|
||||
<x-dropdown.link href="{{ route('transfers.pdf', $transfer->id) }}" id="show-more-actions-pdf-transfer">
|
||||
{{ trans('general.download_pdf') }}
|
||||
</x-dropdown.link>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user