@extends('provider.layout.app') @section('content')
@lang('provider.profile.profile') @lang('provider.profile.manage_documents') @lang('provider.profile.update_location') @lang('provider.profile.wallet_transaction') @if(Setting::get('CARD')==0) @lang('provider.card.list') @endif @lang('provider.profile.transfer')

@lang('provider.profile.wallet_transaction') (@lang('provider.current_balance') : {{currency($wallet_balance)}})

@php($page = ($pagination->currentPage-1)*$pagination->perPage) @foreach($wallet_transation as $index=>$wallet) @php($page++) @endforeach
@lang('provider.sno') @lang('provider.transaction_ref') @lang('provider.datetime') @lang('provider.transaction_desc') @lang('provider.status') @lang('provider.amount')
{{$page}} {{$wallet->transaction_alias}} {{$wallet->created_at->diffForHumans()}} {{$wallet->transaction_desc}} @if($wallet->type == 'C') @lang('provider.credit') @else @lang('provider.debit') @endif {{currency($wallet->amount)}}
{{ $wallet_transation->links() }}
@endsection