This commit is contained in:
hackerESQ
2024-08-28 23:32:01 -05:00
parent 69c43dc41f
commit 1e0a149ded
6 changed files with 28 additions and 25 deletions
+1 -1
View File
@@ -114,7 +114,7 @@
@livewire('transactions-list', [
'portfolio' => $holding->portfolio,
'transactions' => $holding->transactions,
'transactions' => $transactions,
'shouldGoToHolding' => false
])
@@ -1,5 +1,6 @@
<?php
use App\Models\Holding;
use App\Models\Portfolio;
use App\Models\Transaction;
use Illuminate\Support\Collection;
@@ -40,6 +41,9 @@ new class extends Component {
{
return $this->portfolio
->holdings()
->withCount(['transactions as num_transactions' => function ($query) {
$query->where('portfolio_id', $this->portfolio->id);
}])
->orderBy(...array_values($this->sortBy))
->where('quantity', '>', 0)
->get();