@extends('layouts.app') @section('content')

Currencies

@if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
@endif

Add currency

Use a lowercase ISO-style code (e.g. usd, aud) for Stripe compatibility. Agents and admins will see these options when creating invoices.

@csrf

Active currencies

@forelse($currencies as $c) @empty @endforelse
Code Label Sort
{{ strtoupper($c->code) }} {{ $c->label }} {{ $c->sort_order }}
@csrf @method('DELETE')
No currencies. Run migrations or add one above.
@endsection