@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) @endforeach
      Currency
    {{{$currency->name}}} ({{{$currency->code}}}) ({{{$currency->symbol}}}) @if($currency->id == $defaultCurrency->id) default @else make default @endif
    @endif

    Add another currency

@stop