This commit is contained in:
Cüneyt Şentürk 2022-10-25 11:51:59 +03:00
parent a1904d1839
commit 8f349ee9c4

View File

@ -50,7 +50,7 @@ class Companies extends Controller
$currencies = [];
foreach ($money_currencies as $key => $item) {
$currencies[$key] = $item['name'];
$currencies[$key] = $key . ' - ' . $item['name'];
}
return view('common.companies.create', compact('currencies'));
@ -106,7 +106,7 @@ class Companies extends Controller
$currencies = [];
foreach ($money_currencies as $key => $item) {
$currencies[$key] = $item['name'];
$currencies[$key] = $key . ' - ' . $item['name'];
}
return view('common.companies.edit', compact('company', 'currencies'));