query('currency_code', 'NPR'))); if (strlen($currency) > 16) { $currency = 'NPR'; } $pool = JackpotPool::query() ->where('currency_code', $currency) ->where('status', 1) ->first(); return ApiResponse::success([ 'currency_code' => $currency, 'enabled' => $pool !== null, 'current_amount_minor' => $pool !== null ? (int) $pool->current_amount : 0, ]); } }