removed extra brackets
This commit is contained in:
		@@ -11,7 +11,7 @@ class AccountBalance extends Widget
 | 
			
		||||
 | 
			
		||||
    public function show()
 | 
			
		||||
    {
 | 
			
		||||
        $accounts = Account::with(['income_transactions', 'expense_transactions'])->enabled()->take(5)->get();
 | 
			
		||||
        $accounts = Account::with('income_transactions', 'expense_transactions')->enabled()->take(5)->get();
 | 
			
		||||
 | 
			
		||||
        return $this->view('widgets.account_balance', [
 | 
			
		||||
            'accounts' => $accounts,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user