@php
$actives = \App\Currency::getActiveCurrency();
$current = \App\Currency::getCurrent('currency_main');
@endphp
{{--Multi Language--}}
@if(!empty($actives) and count($actives) > 1)
@foreach($actives as $currency)
@if($current == $currency['currency_main'])
{{strtoupper($currency['currency_main'])}}
@endif
@endforeach
@endif
{{--End Multi language--}}