@lang('No') |
@lang('Type') |
@lang('Txnid') |
@lang('Amount') |
@lang('Date') |
@if (count($transactions) == 0)
{{__('No Data Found')}}
|
@else
@foreach($transactions as $key=>$data)
@php
$from = App\Models\User::where('id',$data->user_id)->first();
@endphp
{{ $loop->iteration }}
|
{{ strtoupper($data->type) }}
|
{{ $data->txnid }}
|
{{ showprice($data->amount,$currency) }}
|
{{date('d M Y',strtotime($data->created_at))}}
|
@endforeach
@endif
{{ $transactions->links() }}
@endsection
@push('js')
@endpush