@extends('bootstrap.layouts.app') @section('content')
@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
@csrf @method('POST')
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@if (!empty($transactions)) @foreach ($transactions as $transaction) @endforeach @endif
# Date Method Amount
{{ $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 }}
@include('layouts.footer') @endsection @section('script') @endsection