@extends('layouts.admin') @section('title') @lang('Api Deposits') @endsection @section('breadcrumb')

@lang('Api Deposits')

@endsection @section('content')
@forelse ($deposits as $info) @empty @endforelse
@lang('Transaction ID') @lang('Merchant') @lang('Amount(With Charge)') @lang('Method') @lang('Status') @lang('Details') @lang('Action')
{{$info->txn_id}} {{$info->merchant->email}} {{amount($info->amount,$info->currency->type,2)}} {{$info->currency->code}} {{$info->method}} @if ($info->status == 0) {{__('Pending')}} @elseif($info->status == 2) {{__('Rejected')}} @else {{__('Completed')}} @endif {{$info->txn_details ?? 'N/A'}}
@if ($info->status == 0) @else @endif
@lang('No Data Found')
@if ($deposits->hasPages()) {{ $deposits->links() }} @endif
@endsection @push('script') @endpush