Merge branch 'adminlte4' into develop

This commit is contained in:
James Cole
2023-08-12 17:44:08 +02:00
119 changed files with 22217 additions and 5547 deletions

View File

@@ -322,16 +322,11 @@ class BasicController extends Controller
'currency_decimal_places' => $row['currency_decimal_places'],
'value_parsed' => app('amount')->formatFlat($row['currency_symbol'], $row['currency_decimal_places'], $leftToSpend, false),
'local_icon' => 'money',
'sub_title' => (string)trans(
'firefly.box_spend_per_day',
[
'amount' => app('amount')->formatFlat(
$row['currency_symbol'],
$row['currency_decimal_places'],
$perDay,
false
),
]
'sub_title' => app('amount')->formatFlat(
$row['currency_symbol'],
$row['currency_decimal_places'],
$perDay,
false
),
];
}

View File

@@ -134,5 +134,4 @@ class CategoryController extends Controller
return response()->json($this->clean($return));
}
}