@foreach ($currencies as $currency)
|
{{ $loop->iteration }}
|
{{ $currency->name }} |
{{ $currency->country_name }} |
{{ $currency->code }} |
{{ $currency->symbol }} |
{{ $currency->status == 1 ? 'Active' : 'Inactive' }}
|
{{ $currency->is_default == 1 ? 'Yes' : 'No' }}
|
|
@endforeach