@extends('admin.layouts.app') @section('panel') @if (request()->routeIs('admin.deposit.list') || request()->routeIs('admin.deposit.method')) @include('admin.deposit.widget') @endif
@lang('Driver') @lang('Gateway | Transaction') @lang('Initiated') @lang('Amount') @lang('Conversion') @lang('Status') @lang('Action') @forelse($deposits as $deposit)
{{ showDateTime($deposit->created_at) }}
{{ diffForHumans($deposit->created_at) }}
{{ showAmount($deposit->amount) }} + {{ showAmount($deposit->charge) }}
{{ showAmount($deposit->amount + $deposit->charge) }}
{{ showAmount(1) }} = {{ showAmount($deposit->rate, currencyFormat: false) }} {{ __($deposit->method_currency) }}
{{ showAmount($deposit->final_amount, currencyFormat: false) }} {{ __($deposit->method_currency) }}
@php echo $deposit->statusBadge @endphp @lang('Details') @empty @endforelse
@if ($deposits->hasPages()) {{ paginateLinks($deposits) }} @endif
@endsection