@extends('layouts.simple.master') @section('title', 'Default') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Transactions

@endsection @section('breadcrumb-items') @endsection @section('content') @php $comment = null; $sender_name = null; $sender_email = null; $sender_wallet = null; @endphp
@if (!empty($data)) @foreach($data as $row) @if (!empty($payment_agent->id)) @if (!empty($row->payment_agent_id)) @php continue; @endphp @endif @endif @if (!empty($row->meta_data)) @php $meta_data = null; if(!empty($row->meta_data)){ $meta_data = json_decode($row->meta_data); } @endphp @endif @if(!isset($meta_data->type) && empty($meta_data->type)) status == 1) data-status="processing" @elseif($row->status == 2) data-status="pending" @elseif($row->status == 3) data-status="approved" @elseif($row->status == 4) data-status="rejected" @endif @if (!empty($payment_agent->id)) @if(!empty($row->gateway_type)) data-type="{{$row->request_type}}" @endif @else data-type="{{$row->request_type}}" @endif > @endif @endforeach @endif
My wallet Amount Request Type Via Status Action
{{$row->wallet_no}} {{$row->amount}} @if($row->request_type == 1) Deposit @elseif($row->request_type == 2) Withdraw @elseif($row->request_type == 3) Internal Transfer @endif @if (empty($row->entity_title) ) Payment Agent @else {{ $row->entity_title }} @endif @if($row->status == 1) Processing @elseif($row->status == 2) Pending @elseif($row->status == 3) Approve @elseif($row->status == 4) Denied @endif
@if (!empty($data)) @foreach($data as $row) @endforeach @endif @endsection @section('script') @endsection