{{-- --}} @php($account_transaction = \App\Models\AccountTransaction::where('from_type', 'store')->where('type', 'collected')->where('from_id', $store->vendor->id)->paginate(25)) @foreach($account_transaction as $k=>$at) @endforeach
{{translate('sl')}} {{translate('messages.received_at')}} {{translate('messages.balance_before_transaction')}} {{translate('messages.amount')}} {{translate('messages.reference')}}{{translate('messages.action')}}
{{$k+$account_transaction->firstItem()}} {{$at->created_at->format('Y-m-d '.config('timeformat'))}} {{\App\CentralLogics\Helpers::format_currency($at['current_balance'])}} {{\App\CentralLogics\Helpers::format_currency($at['amount'])}} {{translate($at['ref'])}}
@if(count($account_transaction) !== 0)
@endif
{!! $account_transaction->links() !!}
@if(count($account_transaction) === 0)
public
{{translate('no_data_found')}}
@endif