diff --git a/app/Admin/Actions/Grid/Exports/DealerWalletWithdraw.php b/app/Admin/Actions/Grid/Exports/DealerWalletWithdraw.php index 34d0754b..a923b25f 100644 --- a/app/Admin/Actions/Grid/Exports/DealerWalletWithdraw.php +++ b/app/Admin/Actions/Grid/Exports/DealerWalletWithdraw.php @@ -39,6 +39,6 @@ class DealerWalletWithdraw extends RowAction public function handle(Request $request) { $last_path_arr = parse_url(session('admin.prev.url')); - return $this->response()->download(admin_route('dealer_wallet_to_bank_logs.export').'?'.$last_path_arr['query']); + return $this->response()->download(admin_route('dealer_wallet_to_bank_logs.export').'?'.($last_path_arr['query']??'')); } }