@php($withdraw_transaction = \App\Models\WithdrawRequest::where('vendor_id', $store->vendor->id)->paginate(25)) @foreach($withdraw_transaction as $k=>$wt) @endforeach
{{translate('messages.sl#')}} {{translate('messages.created_at')}} {{translate('messages.amount')}} {{translate('messages.status')}} {{translate('messages.action')}}
{{$k+$withdraw_transaction->firstItem()}} {{date('Y-m-d '.config('timeformat'), strtotime($wt->created_at))}} {{\App\CentralLogics\Helpers::format_currency($wt->amount)}} @if($wt->approved==0) @elseif($wt->approved==1) @else @endif
@if(count($withdraw_transaction) !== 0)
@endif
{!! $withdraw_transaction->links() !!}
@if(count($withdraw_transaction) === 0)
public
{{translate('no_data_found')}}
@endif