@extends('admin.layouts.master') @section('title',__('Deposit Log')) @section('content')

@if (request()->path() == 'admin/deposit/acceptedRequests') @lang('Accepted') @elseif (request()->path() == 'admin/deposit/rejectedRequests') @lang('Rejected') @elseif (request()->path() == 'admin/deposit/pending') @lang('Pending') @endif @lang('Deposit Request')

@if (request()->path() != 'admin/deposit/acceptedRequests' && request()->path() != 'admin/deposit/rejectedRequests') @endif @php $i = 0; @endphp @foreach ($deposits as $deposit) @if (request()->path() != 'admin/deposit/acceptedRequests' && request()->path() != 'admin/deposit/rejectedRequests') @endif @endforeach
# @lang('Name') @lang('Gateway Name') @lang('Amount') @lang('Charge') @lang('Receipt')@lang('Action')
{{++$i}} {{$deposit->user->name}} {{$deposit->gateway->name}} {{round($deposit->amount, 8)}} {{$general->currency}} {{round($deposit->charge, 8)}} {{$general->currency}}
{{csrf_field()}}
{{csrf_field()}}
{{$deposits->links('pagination::bootstrap-4')}}
@endsection @section('script') @stop