@extends('user.layout.base') @section('title', 'Wallet ') @section('content')

@lang('user.my_wallet')

@include('common.notify')
{{ csrf_field() }}

{{currency(Auth::user()->wallet_balance)}} @lang('user.in_your_wallet')

@lang('user.add_money')

@if(Config::get('constants.card') == 1) @endif @if(Config::get('constants.braintree') == 1) @endif
@if(Config::get('constants.braintree') == 1) @endif
@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.transaction_desc') @lang('provider.status') @lang('provider.amount')
{{$page}} {{$wallet->transaction_alias}} {{$wallet->transaction_desc}} @if($wallet->type == 'C') @lang('user.credit') @else @lang('user.debit') @endif {{currency($wallet->amount)}}
{{ $wallet_transation->links() }}
@endsection @section('scripts') @if(Config::get('constants.braintree') == 1) @endif @endsection