Theme fixes, logo updated, reduce duplication of components

And many more updates
This commit is contained in:
hackerESQ
2024-08-23 21:59:42 -05:00
parent c255d14f23
commit a0ec39638e
26 changed files with 248 additions and 231 deletions
@@ -8,7 +8,8 @@ use Livewire\Volt\Component;
new class extends Component {
// props
public Portfolio $portfolio;
public Collection $transactions;
public ?Portfolio $portfolio;
public ?Transaction $editingTransaction;
// methods
@@ -22,7 +23,7 @@ new class extends Component {
<div class="">
@foreach($portfolio->transactions->take(10) as $transaction)
@foreach($transactions->take(10) as $transaction)
<x-list-item
no-separator