use translation
This commit is contained in:
@@ -2,8 +2,8 @@
|
|||||||
<div x-data>
|
<div x-data>
|
||||||
|
|
||||||
<x-ib-modal
|
<x-ib-modal
|
||||||
key="new-transaction"
|
key="create-transaction"
|
||||||
title="New Transaction"
|
title="{{ __('Create Transaction') }}"
|
||||||
>
|
>
|
||||||
@livewire('manage-transaction-form', [
|
@livewire('manage-transaction-form', [
|
||||||
'portfolio' => $portfolio,
|
'portfolio' => $portfolio,
|
||||||
@@ -25,7 +25,7 @@
|
|||||||
<x-button
|
<x-button
|
||||||
label="{{ __('Create Transaction') }}"
|
label="{{ __('Create Transaction') }}"
|
||||||
class="btn-sm btn-primary"
|
class="btn-sm btn-primary"
|
||||||
@click="$dispatch('toggle-new-transaction')"
|
@click="$dispatch('toggle-create-transaction')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</x-ib-toolbar>
|
</x-ib-toolbar>
|
||||||
@@ -102,6 +102,17 @@
|
|||||||
|
|
||||||
<x-ib-card title="{{ __('Dividends') }}" class="md:col-span-3">
|
<x-ib-card title="{{ __('Dividends') }}" class="md:col-span-3">
|
||||||
|
|
||||||
|
<x-ib-modal
|
||||||
|
key="dividend-options"
|
||||||
|
title="{{ __('Dividend options') }}"
|
||||||
|
>
|
||||||
|
@livewire('manage-transaction-form', [
|
||||||
|
'portfolio' => $portfolio,
|
||||||
|
'symbol' => $holding->market_data->symbol,
|
||||||
|
])
|
||||||
|
|
||||||
|
</x-ib-modal>
|
||||||
|
|
||||||
@if($holding->dividends->isEmpty())
|
@if($holding->dividends->isEmpty())
|
||||||
<div class="flex justify-center items-center h-full pb-10 text-secondary">
|
<div class="flex justify-center items-center h-full pb-10 text-secondary">
|
||||||
|
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<div x-data>
|
<div x-data>
|
||||||
|
|
||||||
<x-ib-modal
|
<x-ib-modal
|
||||||
key="new-transaction"
|
key="create-transaction"
|
||||||
title="New Transaction"
|
title="{{ __('Create Transaction') }}"
|
||||||
>
|
>
|
||||||
@livewire('manage-transaction-form', [
|
@livewire('manage-transaction-form', [
|
||||||
'portfolio' => $portfolio,
|
'portfolio' => $portfolio,
|
||||||
@@ -41,7 +41,7 @@
|
|||||||
<x-button
|
<x-button
|
||||||
label="{{ __('Create Transaction') }}"
|
label="{{ __('Create Transaction') }}"
|
||||||
class="btn-sm btn-primary"
|
class="btn-sm btn-primary"
|
||||||
@click="$dispatch('toggle-new-transaction')"
|
@click="$dispatch('toggle-create-transaction')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</x-ib-toolbar>
|
</x-ib-toolbar>
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
<div x-data>
|
<div x-data>
|
||||||
|
|
||||||
<x-ib-modal
|
<x-ib-modal
|
||||||
key="new-transaction"
|
key="create-transaction"
|
||||||
title="New Transaction"
|
title="{{ __('Create Transaction') }}"
|
||||||
>
|
>
|
||||||
@livewire('manage-transaction-form')
|
@livewire('manage-transaction-form')
|
||||||
|
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
<x-button
|
<x-button
|
||||||
label="{{ __('Create Transaction') }}"
|
label="{{ __('Create Transaction') }}"
|
||||||
class="btn-sm btn-primary"
|
class="btn-sm btn-primary"
|
||||||
@click="$dispatch('toggle-new-transaction')"
|
@click="$dispatch('toggle-create-transaction')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</x-ib-toolbar>
|
</x-ib-toolbar>
|
||||||
|
|||||||
Reference in New Issue
Block a user