Files
investbrain/resources/views/transaction/index.blade.php
T

29 lines
719 B
PHP
Raw Normal View History

2024-08-15 21:35:43 -05:00
<x-app-layout>
2024-08-27 18:12:51 -05:00
<div x-data>
2024-08-15 21:35:43 -05:00
2024-10-22 16:48:53 -05:00
<x-ib-alpine-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')
2024-10-22 16:48:53 -05:00
</x-ib-alpine-modal>
2024-08-27 18:12:51 -05:00
<x-ib-toolbar title="{{ __('All Transactions') }}">
<x-ib-flex-spacer />
<div>
<x-button
2024-10-22 12:41:18 -05:00
label="{{ __('Create Transaction') }}"
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>
</x-ib-toolbar>
2024-08-15 21:35:43 -05:00
2024-08-26 19:49:43 -05:00
@livewire('transactions-table')
2024-08-15 21:35:43 -05:00
</div>
</x-app-layout>