I am using laravel localization
Here is the code I am using
<p class="retail-price">@lang('frontend/watch-detail.Reference.retail')
<span class="prices">
@if($watch['price'] == 0 || $watch['price'] == NULL) N/A
@else
@php
$text =number_format($watch['price'], 0, ',', ' ');
@endphp
{{$text}}
@endif
</span>
</p>
Here is what I get in arabic =>Image that I get
While I should get 30 700!
I do not want to use a reverse function