@extends('layouts.default') @section('content') {{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) }}
Currencies

Firefly III supports various currencies which you can set and enable here.

    @if(count($currencies) > 0) @foreach($currencies as $currency)
  • {{{$currency->name}}} ({{{$currency->code}}}) ({{{$currency->symbol}}}) @if($currency->id == $defaultCurrency->id) default @else make default @endif
  • @endforeach @endif
  • Add another currency
Supported
  • Set the default currency display;
  • Set the default currency for new transactions;
  • Add, modify and remove supported currencies.
  • Display the actual currency of a transaction
  • Update a transaction's currency.
@stop