29 lines
		
	
	
		
			735 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			735 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Widgets;
 | |
| 
 | |
| use App\Abstracts\Widget;
 | |
| use App\Models\Banking\Account;
 | |
| 
 | |
| class AccountBalance extends Widget
 | |
| {
 | |
|     public $default_name = 'widgets.account_balance';
 | |
| 
 | |
|     public $description = 'widgets.description.account_balance';
 | |
| 
 | |
|     public $report_class = 'App\Reports\IncomeExpense';
 | |
| 
 | |
|     public function show()
 | |
|     {
 | |
|         $accounts = Account::with('income_transactions', 'expense_transactions')->enabled()->take(5)->get()->map(function($account) {
 | |
|             $account->balance_formatted = money($account->balance, $account->currency_code, true);
 | |
| 
 | |
|             return $account;
 | |
|         })->all();
 | |
| 
 | |
|         return $this->view('widgets.account_balance', [
 | |
|             'accounts' => $accounts,
 | |
|         ]);
 | |
|     }
 | |
| }
 |