formatting

This commit is contained in:
denisdulici
2019-11-16 17:38:48 +03:00
parent 0d53067f7b
commit a8c5aa7efd
5 changed files with 15 additions and 17 deletions

View File

@ -65,7 +65,7 @@ class Bills extends Controller
$currencies = Currency::enabled()->orderBy('name')->pluck('name', 'code')->toArray();
$currency = Currency::where('code', $bil->currency_code)->first();
$currency = Currency::where('code', $bill->currency_code)->first();
$account_currency_code = Account::where('id', setting('default.account'))->pluck('currency_code')->first();