Auto commit for release 'develop' on 2024-05-27

This commit is contained in:
github-actions
2024-05-27 05:08:44 +02:00
parent c987191212
commit a184548912
8 changed files with 19 additions and 16 deletions

View File

@@ -71,7 +71,7 @@ class TransactionCurrencySeeder extends Seeder
$currencies[] = ['code' => 'HRK', 'name' => 'Croatian kuna', 'symbol' => 'kn', 'decimal_places' => 2];
foreach ($currencies as $currency) {
if(null === TransactionCurrency::where('code', $currency['code'])->first()) {
if (null === TransactionCurrency::where('code', $currency['code'])->first()) {
try {
TransactionCurrency::create($currency);
} catch (\PDOException $e) {