@extends('layouts.admin') @section('title', 'Admin | Client Wallets List') @section('content')
@if($walletDetail == '') @endif
{{csrf_field()}}
status == 'active') ? 'checked' : (($walletDetail == '') ? 'checked' : '') }} required>Active
status == 'pending') ? 'checked' : '' }} required>Disable
@if($walletDetail != '') @endif
@foreach($walletsArray as $key => $singleWallet) @endforeach
Wallet Name Wallet ID Wallet Address Status Company Name Action
{{$singleWallet->wallet_type}} {{$singleWallet->wallet_id}} {{$singleWallet->wallet_address}} {{$singleWallet->status}} {{$singleWallet->companyDetail->company_name}} Edit
@stop