@extends('admin.layout.dashboard-template') @section('content') @php $current_wallet_point=0.0; $rupee=0.0; $current_wallet=App\Models\WalletPoint::orderBy('id','DESC')->first(); $settings=App\Models\Settings::first(); if($current_wallet != null){ $rupee=$current_wallet->rupee_amount; $current_wallet_point=$current_wallet->point; } @endphp


@csrf

Set Wallet Expiry Date

@foreach(App\Models\TypesOfWallet::get() as $k=>$item)
In Month
@endforeach



@csrf

Commission

@foreach(App\Models\ProviderCategory::get() as $key=>$item) @php $wc=App\Models\WalletPointCommission::where('provider_category_id',$item->id)->first(); if($wc==null){ $commission=0; }else{ $commission=$wc->commission; } @endphp
%
@endforeach
@csrf

Contact Details

@csrf

Privacy Policy

@csrf

Terms and Condition

@endsection