@extends('layouts.main') @section('content')
# | {{__('message.exchange from')}}/{{__('message.exchange to')}} | {{__('message.amount')}} | {{__('message.exchange rate')}} | {{__('message.exchange to')}} | {{__('message.created by')}} | {{__('message.created date')}} | {{__('message.action')}} |
---|---|---|---|---|---|---|---|
{{$index+1}} | {{$transaction->moneyExchangeList->exchangeFromCurrency->currency_code??''}}/{{$transaction->moneyExchangeList->exchangeToCurrency->currency_code??''}} | {{number_format($transaction->amount,$currencyFrom->decimal_precision) }} {{$currencyFrom->currency_code}} | {{number_format($transaction->exchange_rate,2) }} | {{number_format($transaction->amount_after_exchange,$currencyTo->decimal_precision) }} {{$currencyTo->currency_code}} | {{$transaction->user->name??''}} | {{ $transaction->created_at->format('d/m/Y H:i') }} | @if(\Auth::user()->role_id==2) @endif |