@if (isset($pageContent) &&
!is_null($pageContent) &&
($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
# |
Date |
Method |
Amount |
@if (!empty($transactions))
@foreach ($transactions as $transaction)
{{ $transaction->payment_id }} |
{{ $transaction->payment_create_date }} |
{{ $transaction->method_name }} |
@php
$currentCurrency = current_currency();
if($currentCurrency->currency_get != "USD"){
$transaction->payment_amount = round($transaction->payment_amount * $currency_detail->currency_value,4);
} else {
$transaction->payment_amount = round($transaction->payment_amount,4);
}
@endphp
{{ $transaction->payment_amount }}
|
@endforeach
@endif
@if (isset($pageContent) &&
!is_null($pageContent) &&
($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif