generated from boboko/starter
10 lines
334 B
PHP
10 lines
334 B
PHP
@props([
|
|
'amount' => null,
|
|
'currency' => '€',
|
|
])
|
|
|
|
{{-- No wrapper element on purpose — drop this inside whatever tag/classes
|
|
the call site already uses (span, p, etc). Formatting logic lives in
|
|
App\Support\Price so it's identical everywhere it's used. --}}
|
|
{{ \App\Support\Price::format($amount, $currency) }}
|