@props(['amount']) @php $currency = \App\Models\SystemSetting::where('key', 'system_currency')->value('value') ?? 'USD'; $symbols = [ 'USD' => '$', 'EUR' => '€', 'TND' => 'DT', ]; $symbol = $symbols[$currency] ?? '$'; $formatted = number_format($amount, 2); @endphp merge(['class' => 'font-mono']) }}> @if($currency === 'TND') {{ $formatted }} {{ $symbol }} @else {{ $symbol }} {{ $formatted }} @endif