@extends('admin.layout.base') @section('title', 'Admin Transactions') @section('content')
Total 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('admin.sno') @lang('admin.transaction_ref') @lang('admin.datetime') @lang('admin.transaction_desc') @lang('admin.status') @lang('admin.amount')
{{$page}} {{$wallet->transaction_alias}} {{$wallet->created_at->diffForHumans()}} {{$wallet->transaction_desc}} {{$wallet->type == 'C' ? 'Credit' : 'Debit'}} {{currency($wallet->amount)}}
@include('common.pagination')

{{config('constants.booking_prefix', '') }} - Ride Transactions, PSET - Provider Settlements, FSET - Fleet Settlements, URC - User Recharges

@endsection