@extends('layouts.user') @section('title') @lang('Deposit') @endsection @section('breadcrumb') @lang('Deposit') @endsection @section('content')
@csrf
@lang('Amount : ')
@lang('Select Wallet')
@lang('Select Gateway')
  • @lang('Amount : ')

@lang('Recent Deposits')

@lang('See All')
@forelse ($deposits as $item) @empty @endforelse
@lang('Amount') @lang('Charge') @lang('Method') @lang('Status') @lang('Date')
{{amount($item->amount,$item->currency->type,2)}} {{$item->currency->code}} {{amount($item->charge,$item->currency->type,2)}} {{$item->currency->code}} {{$item->gateway->name}} {{$item->status}} {{dateFormat($item->created_at)}}
@lang('No data found!')
@endsection @push('script') @endpush