{{ __('transaction.balance') }}
@livewire('dashboard.balance-'.Illuminate\Support\Str::slug($book->report_periode_code), [ 'book' => $book, 'year' => $year, 'selectedMonth' => $month, 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, ])
{{ __('dashboard.top_spending_category') }}
@livewire('dashboard.top-category', [ 'book' => $book, 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, 'typeCode' => 'spending', ])
{{ __('dashboard.top_income_category') }}
@livewire('dashboard.top-category', [ 'book' => $book, 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, 'typeCode' => 'income', ])
{{ __('dashboard.top_spending') }}
@livewire('dashboard.top-transaction', [ 'book' => $book, 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, 'typeCode' => 'spending', ])
{{ __('dashboard.top_income') }}
@livewire('dashboard.top-transaction', [ 'book' => $book, 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, 'typeCode' => 'income', ])
{{ __('dashboard.daily_averages') }}
@livewire('dashboard.daily-averages', [ 'startDate' => $startDate, 'endDate' => $endDate, 'isForPrint' => $isForPrint ?? false, 'book' => $book, ])