@foreach ($datas as $data)
|
{{ $data->transaction_number }}
|
{{ json_decode(@$data->billing_info, true)['bill_first_name'] }}
|
@if ($setting->currency_direction == 1)
{{ $data->currency_sign }}{{ PriceHelper::OrderTotal($data) }}
@else
{{ PriceHelper::OrderTotal($data) }}{{ $data->currency_sign }}
@endif
|
|
|
|
@endforeach