@extends($activeTemplate . 'layouts.master') @section('content')
@forelse($deposits as $deposit) @php $details = $deposit->detail != null ? json_encode($deposit->detail) : null; @endphp @empty @endforelse
@lang('Gateway | Transaction') @lang('Booking No.') | @lang('Initiated At') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Details')
{{ __($deposit->gateway?->name) }}
{{ $deposit->trx }}
{{ $deposit->booking->booking_number }}
{{ showDateTime($deposit->created_at) }}
={{ showAmount($deposit->amount) }} + {{ showAmount($deposit->charge, currencyFormat: false) }}
{{ showAmount($deposit->amount + $deposit->charge) }}
1 {{ __(gs()->cur_text) }} = {{ showAmount($deposit->rate, currencyFormat: false) }} {{ __($deposit->method_currency) }}
{{ showAmount($deposit->final_amount, currencyFormat: false) }} {{ __($deposit->method_currency) }}
@php echo $deposit->statusBadge @endphp
{{ __($emptyMessage) }}
@if ($deposits->hasPages()) {{ $deposits->links() }} @endif {{-- APPROVE MODAL --}} @endsection @push('script') @endpush