From 23047d976e490eb1db1a9ad985d3248ba96d23a1 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Mon, 9 Sep 2024 20:50:06 -0500 Subject: [PATCH] dont hide 0 qty holdings --- resources/views/livewire/holdings-table.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/holdings-table.blade.php b/resources/views/livewire/holdings-table.blade.php index 6708ee7..a294760 100644 --- a/resources/views/livewire/holdings-table.blade.php +++ b/resources/views/livewire/holdings-table.blade.php @@ -45,7 +45,7 @@ new class extends Component { return $query->whereRaw('transactions.symbol = holdings.symbol'); }]) ->orderBy(...array_values($this->sortBy)) - ->where('holdings.quantity', '>', 0) + // ->where('holdings.quantity', '>', 0) ->get(); return $holdings;