@extends('fleet.layout.base') @section('title', 'Fleet Wallet Transactions') @section('content')
Fleet Wallet Transactions (@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}} {{$wallet->type == 'C' ? 'Credit' : 'Debit'}} {{currency($wallet->amount)}}
@include('common.pagination')
@endsection