2025-09-26 17:41:28 -05:00
|
|
|
<x-layouts.app>
|
2024-08-27 18:12:51 -05:00
|
|
|
<div x-data>
|
2024-08-15 21:35:43 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.modal
|
2024-10-18 14:59:10 -05:00
|
|
|
key="create-transaction"
|
2024-10-22 12:41:18 -05:00
|
|
|
title="{{ __('Create Transaction') }}"
|
2024-08-27 18:12:51 -05:00
|
|
|
>
|
|
|
|
|
@livewire('manage-transaction-form')
|
|
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
</x-ui.modal>
|
2024-08-27 18:12:51 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.toolbar title="{{ __('All Transactions') }}">
|
2024-08-27 18:12:51 -05:00
|
|
|
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.flex-spacer />
|
2024-08-27 18:12:51 -05:00
|
|
|
|
|
|
|
|
<div>
|
2025-09-26 17:41:28 -05:00
|
|
|
<x-ui.button
|
2024-10-22 12:41:18 -05:00
|
|
|
label="{{ __('Create Transaction') }}"
|
2024-10-20 20:00:06 -05:00
|
|
|
class="btn-sm btn-primary whitespace-nowrap "
|
2024-10-18 14:59:10 -05:00
|
|
|
@click="$dispatch('toggle-create-transaction')"
|
2024-08-27 18:12:51 -05:00
|
|
|
/>
|
|
|
|
|
</div>
|
2025-09-26 17:41:28 -05:00
|
|
|
</x-ui.toolbar>
|
2024-08-26 19:49:43 -05:00
|
|
|
|
2026-03-13 15:21:22 -05:00
|
|
|
|
|
|
|
|
@livewire('tables.transactions-table')
|
|
|
|
|
|
2024-08-15 21:35:43 -05:00
|
|
|
</div>
|
2025-09-26 17:41:28 -05:00
|
|
|
</x-layouts.app>
|